forked from alexcode/vue2vis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.34 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
{
"name": "vue2vis",
"version": "0.0.16",
"description": "Vue2 component that helps with Visjs interaction",
"jsnext": "dist/vue2vis.js",
"main": "dist/vue2vis.min.js",
"module": "dist/vue2vis.min.js",
"unpkg": "dist/vue2vis.min.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "./scripts/build.sh",
"lint": "eslint src/* test/*",
"beforePublish": "npm run lint && npm run build"
},
"repository": {
"type": "git",
"url": "git://github.com/alexcode/vue2vis.git"
},
"files": [
"dist/",
"src/"
],
"author": "Alex Couturon <[email protected]>",
"license": "MIT",
"keywords": [
"vue",
"vis",
"visjs"
],
"dependencies": {
"vis": "^4.21.0"
},
"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",
"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"
}
}