This repository has been archived by the owner on Apr 21, 2022. It is now read-only.
forked from valohai/cytoscape.js-elk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.66 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
{
"name": "cytoscape-elk",
"version": "2.0.0",
"description": "The ELK layout algorithm adapter for Cytoscape.js",
"main": "dist/cytoscape-elk.js",
"module": "src/index.js",
"author": {
"name": "John Stephenson"
},
"scripts": {
"gh-pages:demo": "cpy demo.html . --rename=index.html",
"gh-pages:deploy": "gh-pages -d . -v node_modules/**",
"gh-pages:clean": "rimraf index.html",
"gh-pages": "gh-pages -d pages",
"postpublish": "gh-pages",
"copyright": "update license",
"lint": "eslint src",
"build": "webpack --mode=production",
"build:release": "run-s build",
"watch": "webpack --progress --watch --mode=development",
"dev": "webpack-dev-server --open",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/cytoscape/cytoscape.js-elk.git"
},
"keywords": [
"cytoscape",
"cytoscape-extension"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/cytoscape/cytoscape.js-elk/issues"
},
"homepage": "https://github.com/cytoscape/cytoscape.js-elk",
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-loader": "^8.0.0",
"camelcase": "^5.3.1",
"chai": "4.2.0",
"cpy-cli": "^3.0.0",
"eslint": "^6.8.0",
"gh-pages": "^2.2.0",
"mocha": "7.0.0",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
},
"peerDependencies": {
"cytoscape": "^3.2.0"
},
"dependencies": {
"elkjs": "^0.5.1"
},
"prettier": {
"singleQuote": true
}
}