-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.02 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.02 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
{
"name": "cyeditor",
"version": "1.0.3",
"private": false,
"description": "CyEditor, A visual flow chart editor based on cytoscape.js",
"main": "dist/cyeditor.umd.js",
"jsdelivr": "dist/cytoscape.umd.min.js",
"keywords": [
"cyeditor",
"flowchart",
"flow chart",
"flow editor",
"process editor",
"flow chart editor",
"vue flow chart",
"cytoscape editor",
"javascript flow",
"graph editor",
"diagram"
],
"scripts": {
"serve": "vue-cli-service serve examples/main.js",
"build": "vue-cli-service build --target lib --name cyeditor src/index.js",
"lint": "vue-cli-service lint --fix",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"test": "echo \"Error: no test specified\" && exit 1",
"precommit": "lint-staged",
"deploy": "./deploy.sh"
},
"husky": {
"hooks": {
"postcommit": "git update-index --again",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*": [
"eslint --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/demonray/cyeditor.git"
},
"bugs": {
"url": "https://github.com/demonray/cyeditor/issues"
},
"author": "ryanlei <leiqirong@gmail.com>",
"license": "ISC",
"dependencies": {
"cytoscape": "^3.7.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.5.1",
"@vue/cli-plugin-eslint": "^3.5.1",
"@vue/cli-service": "^3.5.1",
"@vue/eslint-config-standard": "^4.0.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"eslint": "^5.15.3",
"eslint-plugin-vue": "^5.2.2",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"vue": "^2.6.10",
"vue-template-compiler": "^2.6.10",
"vuepress": "^1.0.2",
"webpack": ">=4 < 4.29"
}
}