-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
65 lines (65 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
62
63
64
65
{
"name": "vue-vis-network",
"version": "0.0.3",
"description": "Vue2 component to integrate with vis-network",
"jsnext": "dist/vue-vis-network.js",
"main": "dist/vue-vis-network.min.js",
"module": "dist/vue-vis-network.min.js",
"unpkg": "dist/vue-vis-network.min.js",
"directories": {
"example": "example"
},
"scripts": {
"build": "run-script-os",
"build:windows": "cd ./scripts/ && build.bat",
"build:linux": "./scripts/build.sh",
"lint": "eslint src/* test/*",
"beforePublish": "npm run lint && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/r3code/vue-vis-network.git"
},
"files": [
"dist/",
"src/"
],
"author": "Dmitriy S. Sinyavskiy <contact@r3code.ru>",
"license": "MIT",
"keywords": [
"vue",
"vis",
"visjs",
"vis-network"
],
"dependencies": {
"vis-network": "^5.3.1"
},
"peerDependencies": {
"vue": "~2.x"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"file-loader": "^2.0.0",
"mini-css-extract-plugin": "^0.4.1",
"optimize-css-assets-webpack-plugin": "^5.0.0",
"run-script-os": "^1.0.7",
"style-loader": "^0.23.1",
"vue": "^2.5.17",
"vue-html-loader": "^1.2.4",
"vue-loader": "^15.2.6",
"vue-style-loader": "^4.1.1",
"vue-template-compiler": "^2.5.17",
"webpack": "^4.16.4",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5"
},
"bugs": {
"url": "https://github.com/r3code/vue-vis-network/issues"
},
"homepage": "https://github.com/r3code/vue-vis-network#readme"
}