-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.09 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.09 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "vue2vis",
"version": "0.1.0",
"private": true,
"description": "vue2vis monorepo",
"workspaces": [
"packages/*"
],
"scripts": {
"serve:graph2d": "lerna run serve --stream --scope @vue2vis/graph2d",
"serve:network": "lerna run serve --stream --scope @vue2vis/network",
"serve:timeline": "lerna run serve --stream --scope @vue2vis/timeline",
"clean": "lerna exec -- rm -rf ./node_modules ./dist && rm -R ./node_modules",
"commit": "yarn git-cz",
"prepare": "lerna run prepare",
"lerna:publish": "lerna publish --conventional-commits",
"lerna:changed": "lerna changed",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "yarn test:unit"
}
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git://github.com/alexcode/vue2vis.git"
},
"author": "Alex Couturon <infocontact.alex@gmail.com>",
"license": "MIT",
"keywords": [
"vue",
"vis",
"visjs"
],
"dependencies": {
"core-js": "^3.6.4",
"vis-data": "^6.2.1",
"vis-util": "^4.0.0"
},
"peerDependencies": {
"vue": "^2.6.11"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@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/component-compiler": "^4.2.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/test-utils": "1.0.0-beta.31",
"babel-eslint": "^10.0.3",
"commitizen": "^4.0.3",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "^6.1.2",
"husky": "^4.2.3",
"lerna": "^3.20.2",
"moment": "^2.24.0",
"prettier": "^1.19.1",
"rollup": "^2.0.6",
"rollup-plugin-vue": "^5.1.6",
"vue": "^2.6.11",
"vue-template-compiler": "^2.6.11"
}
}