forked from emiliorizzo/vue-d3-network
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.52 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
{
"name": "vue-d3-network",
"version": "0.1.25",
"description": "Vue component to graph networks using d3-force",
"main": "dist/vue-d3-network.js",
"scripts": {
"build": "vue build src/vue-d3-network.vue --prod --lib vueD3Network",
"example": "vue build src/example/example.vue --dist example --prod -c config.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --ext .js,.vue src",
"dev": "vue build src/example/example.vue -c config.js"
},
"author": "emi",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/emiliorizzo/vue-d3-network"
},
"bugs": {
"url": "https://github.com/emiliorizzo/vue-d3-network/issues"
},
"keywords": [
"vue",
"vuejs",
"d3",
"network",
"d3-force",
"graph",
"component"
],
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-preset-vue-app": "^1.2.0",
"css-loader": "^0.28.4",
"eslint": "^3.19.0",
"eslint-config-postcss": "^2.0.2",
"eslint-config-standard": "^6.2.1",
"eslint-friendly-formatter": "^2.0.7",
"eslint-loader": "^1.7.1",
"eslint-plugin-env": "0.0.3",
"eslint-plugin-html": "^2.0.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"pug": "^2.0.0-rc.2",
"raw-loader": "^0.5.1",
"source-map": "^0.5.6",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"vue-cli": "^2.8.2",
"vue-style-loader": "^3.0.1",
"webpack": "^3.2.0"
},
"dependencies": {
"d3-force": "^1.0.6"
}
}