-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·60 lines (60 loc) · 1.25 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "vue-gen-router",
"version": "0.0.6",
"description": "Automated generation of vue-router",
"main": "./dist/index.js",
"author": "yuexing0921@gmail.com",
"keywords": [
"vue",
"router",
"routing",
"vue-router"
],
"repository": {
"type": "git",
"url": "https://github.com/yuexing0921/vue-gen-router"
},
"license": "MIT",
"bin": {
"vue-gen-router": "./bin/vue-gen-router"
},
"files": [
"dist/",
"bin/",
"example/"
],
"scripts": {
"precommit": "lint-staged",
"lint": "tslint --fix",
"build": "rm -fr ./dist && tsc",
"format": "prettier --write",
"dev": "tsc --watch"
},
"lint-staged": {
"*.{ts}": [
"yarn run format",
"yarn run lint",
"git add"
]
},
"dependencies": {
"chalk": "^2.4.2",
"fs-extra": "^8.1.0",
"js-yaml": "^3.13.1",
"prettier": "^1.18.2",
"vue-router": "^3.0.7",
"yargs": "^13.3.0"
},
"devDependencies": {
"@types/fs-extra": "^8.0.0",
"@types/js-yaml": "^3.12.1",
"@types/node": "^9.4.0",
"@types/prettier": "^1.18.0",
"husky": "^3.0.1",
"lint-staged": "^9.2.1",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.3",
"vue": "^2.6.10"
}
}