forked from emiliorizzo/vue-d3-network
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.26 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
{
"name": "vue-d3-network",
"version": "0.1.28",
"description": "Vue component to graph networks using d3-force",
"main": "dist/vue-d3-network.umd.js",
"scripts": {
"example": "vue-cli-service build --dest example",
"dev": "vue-cli-service serve",
"build": "npm run build-component && npm run clean-dist",
"build-component": "vue-cli-service build --target lib --name vue-d3-network src/vue-d3-network.vue",
"lint": "vue-cli-service lint",
"clean-dist": "rm dist/demo.html"
},
"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"
],
"dependencies": {
"d3-force": "^1.0.6"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.4.0",
"@vue/cli-plugin-eslint": "^3.4.0",
"@vue/cli-service": "^3.4.0",
"@vue/eslint-config-standard": "^3.0.0-rc.5",
"pug": "^2.0.3",
"pug-plain-loader": "^1.0.0",
"raw-loader": "^0.5.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"vue": "^2.5.16",
"vue-template-compiler": "^2.5.16"
}
}