-
Notifications
You must be signed in to change notification settings - Fork 83
/
package.json
61 lines (61 loc) · 1.63 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
{
"name": "cytoscape-dagre",
"version": "2.5.0",
"description": "The Dagre layout for DAGs and trees for Cytoscape.js",
"main": "cytoscape-dagre.js",
"author": {
"name": "Max Franz",
"email": "maxkfranz@gmail.com"
},
"scripts": {
"postpublish": "run-s gh-pages",
"gh-pages": "gh-pages -d pages",
"copyright": "update license",
"lint": "eslint src",
"build": "cross-env NODE_ENV=production webpack",
"build:min": "cross-env NODE_ENV=production MIN=true webpack",
"build:release": "run-s build copyright",
"watch": "cross-env NODE_ENV=development webpack --progress --watch",
"dev": "webpack-dev-server --open",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/cytoscape/cytoscape.js-dagre.git"
},
"keywords": [
"cytoscape",
"cytoscape-extension"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/cytoscape/cytoscape.js-dagre/issues"
},
"homepage": "https://github.com/cytoscape/cytoscape.js-dagre",
"devDependencies": {
"@webpack-cli/serve": "^0.2.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.1.0",
"babel-preset-env": "^1.7.0",
"camelcase": "^6.0.0",
"chai": "4.2.0",
"cpy-cli": "^3.1.1",
"cross-env": "^7.0.2",
"eslint": "^7.6.0",
"gh-pages": "^3.1.0",
"mocha": "8.1.1",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"update": "^0.7.4",
"updater-license": "^1.0.0",
"webpack": "^4.44.1",
"webpack-dev-server": "^3.11.0",
"webpack-cli": "^3.3.12"
},
"peerDependencies": {
"cytoscape": "^3.2.22"
},
"dependencies": {
"dagre": "^0.8.5"
}
}