-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
92 lines (92 loc) · 2.74 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "vue-cli-plugin-navigator",
"version": "2.1.0",
"description": "Multi-page application homepage for vue cli",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/longshihui/vue-cli-plugin-navigator.git"
},
"keywords": [
"vue",
"cli",
"plugin",
"pages",
"vue-cli",
"vue-cli-plugin",
"dev",
"development",
"multi",
"multiple",
"homepage",
"navigator",
"navigation"
],
"author": "colorless",
"license": "MIT",
"bugs": {
"url": "https://github.com/longshihui/vue-cli-plugin-navigator/issues"
},
"homepage": "https://github.com/longshihui/vue-cli-plugin-navigator#readme",
"scripts": {
"serve": "vue-cli-service serve",
"build": "rollup -c rollup.config.js",
"lint": "vue-cli-service lint",
"prepublishOnly": "npm run build",
"beautiful": "prettier --write \"**/*.{js,vue,json,css,md}\"",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"test": "jest --config jest.config.js"
},
"dependencies": {
"html-webpack-plugin": "^3.2.0",
"lodash": "^4.17.11",
"vue": "^2.5.17"
},
"main": "./service/index.js",
"devDependencies": {
"@vue/cli-plugin-babel": "^3.1.1",
"@vue/cli-plugin-eslint": "^3.1.5",
"@vue/cli-plugin-typescript": "^3.1.1",
"@vue/cli-service": "^3.3.0",
"@vue/eslint-config-airbnb": "^4.0.0",
"@vue/eslint-config-typescript": "^3.1.1",
"autoprefixer": "^9.7.3",
"commitizen": "^2.10.1",
"cz-conventional-changelog": "^2.1.0",
"husky": "^1.1.2",
"jest": "^23.6.0",
"lint-staged": "^7.3.0",
"mockjs": "^1.0.1-beta3",
"node-sass": "^4.9.0",
"postcss": "^7.0.5",
"prettier": "^1.14.3",
"rimraf": "^2.6.2",
"rollup": "^0.66.6",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^9.1.6",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-postcss": "^1.6.2",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.1.2",
"rollup-plugin-typescript2": "^0.17.1",
"rollup-plugin-vue": "4.4.0-alpha.0",
"sass-loader": "^7.1.0",
"typescript": "^3.1.6",
"vue-template-compiler": "^2.5.17"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,vue,json,css,md}": [
"prettier --write",
"git add"
]
}
}