-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.17 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
{
"name": "mpx-echarts",
"version": "1.0.0",
"description": "use echarts with mpx framework",
"module": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"predev": "npm i @mpxjs/core @mpxjs/api-proxy -no-save",
"build": "node ./build/build.js",
"watch": "node ./build/build.js -w",
"prod": "node ./build/build.js -p",
"watch:cross": "npm run watch --wx --ali --swan",
"build:cross": "npm run build --wx --ali --swan",
"prod:cross": "npm run prod --wx --ali --swan",
"lint": "eslint --ext .js,.mpx example/",
"help": "node ./build/build.js --help"
},
"author": "echaoo <1299529160@qq.com>",
"license": "ISC",
"peerDependencies": {
"@mpxjs/api-proxy": "^2.0.0",
"@mpxjs/core": "^2.0.0"
},
"dependencies": {
"echarts": "^4.3.0"
},
"devDependencies": {
"copy-webpack-plugin": "^5.0.3",
"@mpxjs/webpack-plugin": "^2.0.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.10.0",
"eslint-config-babel": "^8.0.2",
"eslint-config-standard": "^12.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-html": "^5.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-local-rules": "^0.1.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-runtime": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"chalk": "^2.3.2",
"css-loader": "^0.28.11",
"file-loader": "^1.1.11",
"html-loader": "^0.5.5",
"ora": "^2.0.0",
"path": "^0.12.7",
"rimraf": "^2.6.2",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"url-loader": "^1.0.1",
"webpack": "^4.16.1",
"webpack-cli": "^3.1.0",
"webpack-merge": "^4.1.2",
"webpack-bundle-analyzer": "^3.3.2"
},
"directories": {
"src": "src"
},
"files": [
"src"
],
"babel": {
"ignore": [
"src/echarts"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
}
}