-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
47 lines (47 loc) · 1.4 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
{
"name": "networkvizjs",
"version": "0.0.6-alpha.3",
"description": "Draw easy graphs or networks",
"main": "./dist/networkViz.js",
"scripts": {
"start": "npm run build-ts && npm run watch-ts",
"bundle": "webpack",
"build:umd": "echo \"No umd.js yet\"",
"build:umd.min": "echo \"No umd.min.js yet\"",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"test": "echo \"No tests yet\"",
"lint": "eslint -c .eslintrc.js --ext .ts src",
"prepare": "npm run build-ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SpyR1014/networkVizJS.git"
},
"author": "Andrew Jakubowicz",
"license": "MIT",
"bugs": {
"url": "https://github.com/SpyR1014/networkVizJS/issues"
},
"homepage": "https://github.com/SpyR1014/networkVizJS#readme",
"devDependencies": {
"@types/d3": "^5.16.4",
"@types/node": "^15.0.1",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"eslint": "^7.4.0",
"eslint-plugin-jsdoc": "^29.1.0",
"eslint-plugin-no-null": "^1.0.2",
"level-js": "^5.0.0",
"level-packager": "^5.1.0",
"typescript": "^3.9.9",
"webpack-cli": "^4.6.0"
},
"dependencies": {
"d3": "^5.16.0",
"interactjs": "^1.10.11",
"level": "^6.0.1",
"levelgraph": "2.1.1",
"webcola": "git+https://github.com/yusufades/WebCola.git#22967c595372a7a7324733e8048980d0551eff3d"
}
}