-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
124 lines (124 loc) · 3.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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "vuxes",
"version": "0.1.0",
"description": "学而思新课堂Vue组件库",
"main": "lib/index.umd.js",
"unpkg": "lib/index.umd.min.js",
"module": "lib/index.common.js",
"style": "lib/theme-default/index.css",
"author": "xes-new-class",
"private": false,
"keywords": [
"vuxes",
"vue",
"component",
"ui",
"framework",
"xes"
],
"repository": {
"type": "git",
"url": "https://github.com/XES-NEW-CLASS/vuxes.git"
},
"files": [
"lib"
],
"scripts": {
"cli": "./build/cli.sh",
"init": "npm install commitizen -g && commitizen init cz-conventional-changelog --save-dev --save-exact && npm run bootstrap",
"bootstrap": "npm install && cd ./packages/theme-default && npm install",
"lint": "vue-cli-service lint --fix",
"clean": "rimraf lib && rimraf packages/*/lib",
"build:entry": "node build/build-entry.js ",
"lib": "vue-cli-service build --target lib --name index --dest lib packages/index.js",
"build:style": "gulp build --gulpfile ./packages/theme-default/gulpfile.js && cp-cli packages/theme-default/lib lib/theme-default",
"build:lib": "node build/build-lib.js ",
"build:docs": "vue-cli-service build",
"publish:lib": "sh build/release.sh",
"publish:docs": "node build/publish-docs.js",
"release": "standard-version",
"dev": "npm run build:entry && vue-cli-service serve",
"dev:style": "gulp --gulpfile packages/theme-default/gulpfile.js",
"test:jest": "vue-cli-service test:unit --watchAll",
"test:cov": "vue-cli-service test:unit --coverage"
},
"prepublishOnly": "npm run publish:lib",
"dependencies": {
"core-js": "^3.6.4",
"vue": "^2.6.11",
"vue-router": "^3.1.5"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@vue/cli-plugin-babel": "^4.2.0",
"@vue/cli-plugin-eslint": "^4.2.0",
"@vue/cli-plugin-unit-jest": "^4.2.0",
"@vue/cli-service": "^4.2.0",
"@vue/eslint-config-standard": "^5.1.0",
"@vue/test-utils": "1.0.0-beta.31",
"babel-eslint": "^10.0.3",
"babel-jest": "^25.1.0",
"babel-plugin-component": "^1.1.1",
"chalk": "^3.0.0",
"commitizen": "^4.0.3",
"cp-cli": "^2.0.0",
"cz-conventional-changelog": "^3.1.0",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^6.1.2",
"fs-extra": "^7.0.1",
"gh-pages": "^2.2.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^7.0.1",
"highlight.js": "^9.18.1",
"husky": "^4.2.3",
"inquirer": "^7.1.0",
"jest-transform-stub": "^2.0.0",
"less": "^3.0.4",
"less-loader": "^5.0.0",
"lint-staged": "^8.2.1",
"markdown-it": "^10.0.0",
"markdown-it-container": "^2.0.0",
"semver": "^7.1.3",
"shelljs": "^0.8.3",
"signale": "^1.4.0",
"sinon": "^9.0.0",
"standard-version": "^7.1.0",
"uppercamelcase": "^3.0.0",
"vue-jest": "^3.0.5",
"vue-markdown-loader": "^2.4.1",
"vue-template-compiler": "^2.6.11"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $GIT_PARAMS"
}
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js,!build/*": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
},
"jest": {
"snapshotSerializers": [
"jest-serializer-vue"
]
}
}