forked from Basasuya/ogdf.js
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.5 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
{
"name": "ogdfjs",
"private": true,
"description": "A JavaScript Graph Drawing Library Emscripts the C++ Library [OGDF](https://ogdf.uos.de/)",
"workspaces": [
"packages/*"
],
"scripts": {
"test": "cd packages/ogdf.js && npm run test",
"build": "cd packages/ogdf.js && npm run build",
"bootstrap": "lerna bootstrap",
"lint": "cd packages/ogdf.js && npm run lint",
"watch": "cd packages/ogdf.js && npm run watch",
"build:dashboard": "cd packages/dashboard && npm run build",
"watch:dashboard": "cd packages/dashboard && npm run start",
"server": "concurrently \"http-server -a localhost -p 5000\" \"start http://localhost:5000/examples\"",
"server:clean": "concurrently \"http-server -a localhost -p 5001 -c-1\" \"start http://localhost:5001/examples\"",
"publish": "lerna version --no-private"
},
"keywords": [
"graph",
"visualization",
"ogdf",
"layout"
],
"devDependencies": {
"babel-eslint": "^10.1.0",
"concurrently": "^6.2.1",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.14.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"git-cz": "^4.8.0",
"http-server": "^13.0.1",
"lerna": "^4.0.0",
"prettier": "^2.3.2"
},
"config": {
"commitizen": {
"path": "./node_modules/git-cz"
}
}
}