-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.56 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-cli-plugin-externals",
"version": "2.0.2",
"description": "Manage external modules in your project in vue-cli 3.x",
"main": "./service/index.js",
"scripts": {
"test": "jest",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "[email protected]:longshihui/vue-cli-plugin-externals.git"
},
"homepage": "https://github.com/longshihui/vue-cli-plugin-externals#readme",
"bugs": {
"url": "https://github.com/longshihui/vue-cli-plugin-externals/issues"
},
"keywords": [
"vue",
"vue-cli",
"vue-cli-plugin",
"externals",
"cdn-modules"
],
"author": "colorless",
"license": "ISC",
"devDependencies": {
"@vue/cli": "^3.4.1",
"@vue/cli-service": "^3.4.1",
"commitizen": "^3.0.4",
"cz-conventional-changelog": "^2.1.0",
"husky": "^1.1.2",
"jest": "^24.1.0",
"lint-staged": "^8.0.3",
"prettier": "^1.14.3",
"rimraf": "^2.6.3",
"standard-version": "^5.0.1",
"vue-template-compiler": "^2.6.8"
},
"dependencies": {
"html-webpack-externals-plugin": "^3.8.0",
"lodash": "^4.17.11"
},
"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"
]
}
}