-
Notifications
You must be signed in to change notification settings - Fork 69
/
package.json
90 lines (90 loc) · 3.2 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
{
"name": "@ams-team/ams",
"description": "Admin Materials System.",
"license": "Apache 2.0",
"homepage": "https://github.com/vipshop/ams/",
"repository": {
"type": "git",
"url": "git+https://github.com/vipshop/ams.git"
},
"keywords": [
"ams",
"vue",
"element-ui"
],
"version": "0.33.0",
"main": "lib/ams.common.js",
"unpkg": "lib/ams.js",
"scripts": {
"unit": "./node_modules/.bin/jest",
"test": "./node_modules/.bin/jest --coverage",
"lint": "./node_modules/.bin/eslint --ext vue,js ./",
"clean": "rimraf lib && rimraf dist",
"build": "node build/bin/prebuild.js && npm run lint && npm run clean && webpack --config build/webpack.conf.js && webpack --config build/webpack.common.js",
"components": "webpack --config build/webpack.component.js --libraryTarget commonjs2",
"components-umd": "webpack --config build/webpack.component.js --libraryTarget umd",
"dev": "lerna bootstrap && webpack-dev-server --inline --progress --config build/webpack.dev.js"
},
"dependencies": {
"@babel/runtime": "^7.4.4",
"dayjs": "^1.10.5",
"element-ui": "^2.15.1",
"gh-pages": "^2.1.0",
"lodash": "^4.17.21",
"normalize.css": "^8.0.1",
"vue": "^2.6.10",
"vue-router": "^3.0.6"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@babel/plugin-syntax-jsx": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@vue/test-utils": "^1.0.0-beta.29",
"autoprefixer": "^9.4.3",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.5",
"babel-plugin-transform-vue-jsx": "^4.0.1",
"css-loader": "^1.0.1",
"eslint": "^5.15.1",
"eslint-config-alloy": "^1.4.2",
"eslint-plugin-vue": "^5.2.2",
"file-loader": "^3.0.1",
"filemanager-webpack-plugin": "^2.0.5",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.8.0",
"jest-serializer-vue": "^2.0.2",
"jest-sonar-reporter": "^2.0.0",
"lerna": "^3.16.4",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-url": "^8.0.0",
"progress-bar-webpack-plugin": "^1.11.0",
"rimraf": "^2.6.2",
"sass": "^1.30.0",
"sass-loader": "^7.2.0",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"vue": "^2.6.10",
"vue-eslint-parser": "^6.0.3",
"vue-jest": "^3.0.4",
"vue-loader": "^15.4.2",
"vue-template-compiler": "^2.6.10",
"vue-template-es2015-compiler": "^1.6.0",
"webpack": "^4.25.1",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10",
"webpack-node-externals": "^1.7.2"
},
"jestSonar": {
"indent": 4,
"reportPath": "test/_coverage",
"reportFile": "test-reporter.xml"
}
}