forked from alibaba/butterfly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.37 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "butterfly-dag",
"version": "3.2.2",
"description": "一个基于数据驱动的节点式编排组件库,让你有方便快捷定制可视化流程图表",
"main": "dist/index.js",
"es": "es/index.js",
"pack": "pack/index.js",
"scripts": {
"test": "mocha --require ./test/window.js ./test/*.test.js",
"release": "rollup -c && npm publish",
"coverage": "nyc npm run test",
"compile": "./node_modules/webpack/bin/webpack.js",
"build": "webpack && rollup -c && cp -r static ./es/ && cp -r static ./dist"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/alibaba/butterfly.git"
},
"devDependencies": {
"@babel/core": "~7.13.0",
"@babel/plugin-proposal-class-properties": "~7.13.0",
"@babel/plugin-proposal-object-rest-spread": "~7.13.0",
"@babel/plugin-transform-modules-commonjs": "~7.13.0",
"@babel/plugin-transform-runtime": "~7.13.0",
"@babel/preset-env": "~7.13.0",
"@babel/preset-react": "~7.12.13",
"@babel/register": "~7.13.0",
"babel-loader": "~8.2.0",
"babel-plugin-transform-es2015-modules-commonjs": "~6.26.2",
"canvas": "^2.6.1",
"css-loader": "~5.1.0",
"ignore-styles": "^5.0.1",
"jquery": "^3.5.1",
"jsdom": "^16.4.0",
"less": "~4.1.1",
"less-loader": "~8.0.0",
"lodash": "^4.17.20",
"mini-css-extract-plugin": "~1.3.2",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"rollup": "~2.39.1",
"rollup-plugin-babel": "~4.4.0",
"rollup-plugin-commonjs": "~10.1.0",
"rollup-plugin-extensions": "~0.1.0",
"rollup-plugin-json": "~4.0.0",
"rollup-plugin-peer-deps-external": "~2.2.0",
"rollup-plugin-postcss": "~4.0.0",
"rollup-plugin-url": "~3.0.1",
"style-loader": "~2.0.0",
"url-loader": "~4.1.0",
"webpack": "~5.24.2",
"webpack-cli": "~4.5.0"
},
"peerDependencies": {
"jquery": ">=2.0.0",
"lodash": ">=4.0.0"
},
"dependencies": {
"@antv/hierarchy": "~0.6.4",
"d3-force": "~2.1.1",
"dagre": "~0.8.5",
"dom-to-image": "~2.6.0",
"eventemitter3": "4.0.7",
"ml-matrix": "^6.5.0",
"@antv/matrix-util": "^3.0.4"
},
"keywords": [
"节点式编程,数据图,流程图,连通图"
],
"author": "noonnightstorm",
"license": "MIT",
"bugs": {
"url": "https://github.com/alibaba/butterfly/issues"
},
"homepage": "https://github.com/alibaba/butterfly#readme"
}