-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 842 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 842 Bytes
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
{
"name": "zflowchart",
"version": "0.1.1",
"description": "flowchart base on ZRender",
"main": "dist/ZFlowchart.js",
"license": "MIT",
"private": false,
"files": [
"src",
"dist"
],
"keywords": [
"flowchart",
"ZRender",
"canvas",
"typeScript"
],
"scripts": {
"prepublish": "node script/build.js",
"demo": "node script/demo.js",
"build": "node script/build.js",
"test": "mochify --timeout 150000"
},
"author": "FayFang",
"peerDependencies": {
"zrender": "^4.0.7"
},
"devDependencies": {
"chai": "^4.2.0",
"html-webpack-plugin": "^3.2.0",
"mochify": "^6.2.0",
"ts-loader": "^6.0.0",
"tslint": "^5.16.0",
"typescript": "^3.4.5",
"webpack": "^4.30.0",
"webpack-dev-server": "^3.3.1"
},
"dependencies": {
"zrender": "^4.0.7"
}
}