forked from jnoodle/vue-flowchart-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.51 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
{
"name": "vue-flowchart-editor",
"version": "1.0.2",
"description": "A flowchart editor component base on Vue and G6",
"keywords": [
"vue",
"flowchart",
"editor",
"g6",
"workflow",
"graphics",
"graph"
],
"author": {
"name": "jnoodle",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:jnoodle/vue-flowchart-editor.git"
},
"files": [
"lib/*",
"src/*",
"public/*",
"*.json",
"*.js",
"*.md"
],
"main": "dist/vue-flowchart-editor.common.js",
"unpkg": "dist/vue-flowchart-editor.umd.min.js",
"jsdelivr": "dist/vue-flowchart-editor.umd.min.js",
"scripts": {
"serve": "vue-cli-service serve src/demo/app.js",
"build:demo": "BUILD=demo vue-cli-service build src/demo/app.js",
"build:lib": "BUILD=lib vue-cli-service build --target lib --name vue-flowchart-editor src/index.js",
"lint": "vue-cli-service lint"
},
"dependencies": {
"@antv/g6": "^2.2.6",
"gg-editor-core": "^1.3.4",
"lodash": "^4.17.15",
"vue": "^2.6.10"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.0.0",
"@vue/cli-plugin-eslint": "^4.0.0",
"@vue/cli-service": "^4.0.0",
"@vue/eslint-config-prettier": "^5.0.0",
"babel-eslint": "^10.0.3",
"eslint": "^5.16.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "^5.0.0",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"prettier": "^1.18.2",
"vue-template-compiler": "^2.6.10"
}
}