-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
71 lines (71 loc) · 1.87 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
{
"name": "xcrud",
"version": "0.4.19",
"description": "A simplified crud component based on element-ui & Vue",
"main": "dist/xcrud.umd.min.js",
"scripts": {
"dev": "cross-env NODE_ENV=dev vuepress dev docs",
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --target lib --inline-vue --entry package/index.js",
"lint": "vue-cli-service lint",
"prepublish": "yarn build",
"docs:build": "cross-env NODE_ENV=production vuepress build docs&&echo 1 > ./docs/.vuepress/dist/.nojekyll",
"bump-version": "cd ./docs && node -e 'require(\"./.vuepress/lib/versioning.js\").generate()'"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GoldSubmarine/xcrud.git"
},
"keywords": [
"crud",
"vue",
"element-ui"
],
"author": {
"name": "charles",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/GoldSubmarine/xcrud/issues"
},
"homepage": "https://github.com/GoldSubmarine/xcrud#readme",
"dependencies": {
"element-ui": "^2.13.2",
"lodash.clonedeep": "^4.5.0",
"lodash.merge": "^4.6.2",
"vue": "^2.6.11"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.5.0",
"@vue/cli-plugin-eslint": "^4.5.0",
"@vue/cli-service": "^4.5.0",
"async-validator": "1.11.5",
"babel-eslint": "^10.1.0",
"core-js": "^3.6.5",
"cross-env": "^7.0.2",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^6.2.2",
"highlight.js": "^9.12.0",
"sass": "^1.26.10",
"sass-loader": "^10.0.2",
"vue-highlight.js": "^2.2.0",
"vue-template-compiler": "^2.6.11",
"vuepress": "^1.5.4"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"files": [
"CHANGELOG.md",
"dist",
"package",
"README.md",
"LICENSE"
]
}