forked from vue-workflow-chart/vue-workflow-chart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.46 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
{
"name": "vue-workflow-chart",
"version": "0.4.5",
"private": false,
"author": {
"name": "vue-workflow-chart"
},
"keywords": [
"vue",
"workflow",
"chart",
"dagre",
"json",
"css"
],
"description": "workflow charts for vue.js",
"license": "GPL-3.0-or-later",
"repository": "https://github.com/vue-workflow-chart/vue-workflow-chart",
"main": "./dist/vue-workflow-chart.umd.js",
"unpkg": "./dist/vue-workflow-chart.umd.min.js",
"scripts": {
"serve": "vue-cli-service serve ./example/main.js",
"build": "vue-cli-service build --target lib --name vue-workflow-chart ./src/components/WorkflowChart.vue",
"lint": "vue-cli-service lint",
"test:unit": "vue-cli-service test:unit"
},
"pre-commit": [
"lint",
"test:unit"
],
"dependencies": {
"dagre": "^0.8.4",
"set-value": "^2.0.1"
},
"peerDependencies": {
"vue": "^2.5.x"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.3.0",
"@vue/cli-plugin-eslint": "^3.3.0",
"@vue/cli-plugin-unit-jest": "^3.3.0",
"@vue/cli-service": "^3.3.0",
"@vue/eslint-config-standard": "^4.0.0",
"@vue/test-utils": "^1.0.0-beta.28",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"eslint": "^5.8.0",
"eslint-plugin-vue": "^5.0.0",
"node-sass": "^4.11.0",
"pre-commit": "^1.2.2",
"sass-loader": "^7.1.0",
"vue": "^2.5.x",
"vue-template-compiler": "^2.5.21"
}
}