forked from yanvigdev/vue-d3-network
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.45 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
{
"name": "vue3-d3-network",
"version": "1.0.2",
"description": "Vue 3 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/sandudorogan/vue3-d3-network"
},
"bugs": {
"url": "https://github.com/sandudorogan/vue3-d3-network/issues"
},
"keywords": [
"vue",
"vuejs",
"d3",
"network",
"d3-force",
"graph",
"component"
],
"dependencies": {
"d3-force": "^1.0.6"
},
"devDependencies": {
"eslint": "^8.23.1",
"eslint-config-standard": "^14.1.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^9.4.0",
"vue-eslint-parser": "^9.1.0",
"@vue/cli-service": "^5.0.6",
"raw-loader": "^0.5.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"vue": "^3.2.37",
"vue-template-compiler": "^2.7.2"
}
}