-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
67 lines (67 loc) · 1.6 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
{
"name": "vue-graph",
"productionName": "Vue Graph",
"version": "0.8.7",
"description": "A library that provides various visualization elements for Vue.js",
"main": "src/main.js",
"files": [
"bundles",
"dist",
"examples",
"images",
"src",
"package.json",
"README.md",
"webpack.config.js",
"webpack.dev.js",
"webpack.prod.js"
],
"scripts": {
"start": "npm run dev",
"dev": "webpack-dev-server --env dev",
"dist": "npm run test && webpack --env prod",
"test": "jest --config ./jest.config.js"
},
"keywords": [
"vue",
"vue-graph",
"jui",
"svg",
"canvas",
"chart",
"component",
"data-visualization"
],
"repository": {
"type": "git",
"url": "https://github.com/juijs/vue-graph.git"
},
"homepage": "https://github.com/juijs/vue-graph",
"author": "alvin.h <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.26.3",
"babel-jest": "^23.6.0",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"jest-serializer-vue": "^2.0.2",
"sinon": "^7.5.0",
"uglifyjs-webpack-plugin": "^1.3.0",
"vue-jest": "^3.0.5",
"vue-loader": "^15.7.2",
"vue-template-compiler": "^2.6.7",
"vue-test-utils": "^1.0.0-beta.11",
"webpack": "^4.41.2",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"juijs-chart": "2.6.9",
"vue": "^2.6.7"
}
}