-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.67 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
{
"name": "vue-echarts-lite",
"version": "1.0.5",
"description": "vue component for baidu echarts",
"scripts": {
"build": "mkdirp dist && webpack --progress --colors",
"build:min": "mkdirp dist && webpack --progress --colors",
"dist": "npm run clean && npm run build && npm run build:min",
"clean": "del-cli dist/**",
"dev": "npm run clean && webpack-dev-server --progress --open",
"test": "karma start --single-run"
},
"repository": {
"type": "git",
"url": "git://github.com/LeungZ9/vue-echarts-lite.git"
},
"keywords": [
"vue",
"baidu",
"echarts"
],
"author": "LeungZ",
"license": "MIT",
"bugs": {
"url": "https://github.com/LeungZ9/vue-echarts-lite/issues"
},
"homepage": "https://github.com/LeungZ9/vue-echarts-lite",
"dependencies": {
"echarts": "^3.0.0"
},
"peerDependencies": {
"vue": "^2.0.0"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.23.0",
"chai": "^4.1.2",
"css-loader": "^0.28.7",
"del-cli": "^1.0.0",
"eslint": "^4.2.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-vue": "^3.13.0",
"karma": "^1.4.1",
"karma-chai": "^0.1.0",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-phantomjs-shim": "^1.4.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.31",
"karma-webpack": "^2.0.2",
"mkdirp": "^0.5.1",
"mocha": "^3.2.0",
"phantomjs-prebuilt": "^2.1.14",
"uglifyjs-webpack-plugin": "^0.4.6",
"vue-loader": "^13.0.5",
"vue-template-compiler": "^2.0.0",
"webpack": "^3.1.0",
"webpack-dev-server": "^2.5.1"
}
}