-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
130 lines (130 loc) · 4.11 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "@antv/g6",
"version": "3.1.3",
"description": "graph visualization frame work",
"main": "build/g6.js",
"homepage": "https://github.com/antvis/g6",
"author": "https://github.com/orgs/antvis/people",
"repository": {
"type": "git",
"url": "[email protected]:antvis/g6.git"
},
"bugs": {
"url": "https://github.com/antvis/g6/issues"
},
"keywords": [
"g6",
"relational data",
"graph visualization",
"graph editor",
"graph analysis"
],
"contributors": [
{
"email": "[email protected]",
"url": "https://github.com/AceLeeWinnie"
},
{
"email": "[email protected]",
"url": "https://github.com/liuwuyue"
},
{
"email": "[email protected]",
"url": "https://github.com/deggs7"
}
],
"license": "MIT",
"devDependencies": {
"@antv/hierarchy": "~0.4.0",
"@antv/torch": "^1.0.3",
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-eslint": "~8.0.3",
"babel-loader": "^8.0.0",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-transform-remove-strict-mode": "~0.0.2",
"body-parser": "~1.18.2",
"chai": "~4.1.2",
"chai-almost": "^1.0.1",
"clipboard": "^1.5.15",
"codemirror": "*",
"commander": "~2.12.2",
"connect": "~3.6.6",
"d3-queue": "~3.0.7",
"debug": "~3.1.0",
"electron": "~6.0.4",
"eslint": "~3.19.0",
"eslint-config-airbnb": "~15.0.1",
"eslint-config-egg": "~4.2.0",
"eslint-plugin-html": "~3.1.1",
"eslint-plugin-jsx-a11y": "~5.1.1",
"eslint-plugin-react": "~7.1.0",
"event-simulate": "~1.0.0",
"get-port": "~3.2.0",
"hard-source-webpack-plugin": "~0.13.1",
"home": "~1.0.1",
"jquery": "^3.3.1",
"jszip": "~3.1.5",
"nightmare": "~2.10.0",
"numericjs": "^1.2.6",
"nunjucks": "~3.0.1",
"open": "~0.0.5",
"parseurl": "~1.3.2",
"pre-commit": "~1.2.2",
"radixsort": "~1.0.0",
"serve-static": "~1.13.2",
"shelljs": "~0.7.8",
"svgson": "^2.1.1",
"uglify-js": "~3.1.10",
"webpack": "~4.10.2",
"webpack-cli": "~3.0.0",
"worker-loader": "^2.0.0"
},
"scripts": {
"update": "rm -rf node_modules/ && tnpm i && rm -rf build && tnpm run build",
"build": "webpack",
"build-lib": "babel src --out-dir lib",
"dist": "npm run mkdir-dist && npm run build",
"mkdir-dist": "node ./bin/mkdir-dist.js",
"ci": "npm run lint && npm run test",
"coverage": "npm run coverage-generator && npm run coverage-viewer",
"coverage-generator": "torch --compile --coverage --renderer --recursive --source-pattern index.js,src/**/*.js test/unit/",
"coverage-viewer": "torch-coverage",
"demos": "electron ./demos/app.js",
"demos-web": "node ./demos/app.js --web --port 2046",
"dev": "npm run watch & npm run demos-web",
"lint": "eslint --ext .js ./",
"lint-fix": "eslint --ext .html,.js --fix ./",
"prepublishOnly": "npm run build-lib && npm run build",
"screenshot": "node ./bin/screenshot.js",
"start": "npm run dev",
"test": "torch --compile --renderer --opts test/mocha.opts --recursive ./test/unit",
"test-live": "torch --compile --interactive --watch --opts test/mocha.opts --recursive ./test/unit",
"test-live-shape": "torch --compile --interactive --watch --opts test/mocha.opts --recursive ./test/unit/shape/nodes/modelRect-spec.js",
"test-live-util": "torch --compile --interactive --watch --opts test/mocha.opts --recursive ./test/unit/shape/edge-spec.js",
"test-bugs": "torch --compile --renderer --recursive ./test/bugs",
"test-bugs-live": "torch --compile --interactive --watch --recursive ./test/bugs/issue-601-spec.js",
"test-all": "npm run test && npm run test-bugs",
"watch": "webpack --config webpack-dev.config.js",
"win-dev": "node ./bin/win-dev.js"
},
"pre-commit": {
"run": [
"lint",
"test-all"
],
"silent": false
},
"dependencies": {
"@antv/g": "~3.4.6",
"@antv/hierarchy": "~0.6.0",
"@antv/util": "~1.3.1",
"d3-force": "^2.0.1",
"dagre": "^0.8.4",
"numeric": "^1.2.6"
},
"engines": {
"node": ">=8.9.0"
}
}