-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
61 lines (61 loc) · 1.63 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
{
"name": "vue-vis-network",
"version": "1.0.2",
"description": "Vue2 component to integrate with vis-network",
"main": "dist/vueVisNetwork.umd.js",
"module": "dist/vueVisNetwork.common.js",
"directories": {
"example": "example"
},
"scripts": {
"serve": "vue-cli-service serve --open",
"build": "vue-cli-service build",
"build:bundle": "vue-cli-service build --target lib --name vueVisNetwork src/main.js",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"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-data": "^6.5.0",
"vis-network": "^7.4.0"
},
"peerDependencies": {
"vue": "~2.x",
"vue-vis-network": "^1.0.2"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.2.0",
"@vue/cli-plugin-eslint": "~4.2.0",
"@vue/cli-plugin-unit-jest": "~4.2.0",
"@vue/cli-service": "~4.2.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/test-utils": "1.0.0-beta.31",
"babel-eslint": "^10.0.3",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "^6.1.2",
"prettier": "^1.19.1",
"vue": "^2.6.11",
"vue-template-compiler": "^2.6.11"
},
"bugs": {
"url": "https://github.com/r3code/vue-vis-network/issues"
},
"homepage": "https://github.com/r3code/vue-vis-network#readme"
}