-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
61 lines (61 loc) · 1.42 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-elk",
"version": "2.2.0",
"description": "The ELK layout algorithm adapter for Cytoscape.js",
"main": "dist/cytoscape-elk.js",
"author": {
"name": "John Stephenson"
},
"scripts": {
"pages": "gh-pages -d demo",
"postpublish": "run-s pages",
"lint": "eslint src",
"build": "webpack --mode=production",
"watch": "webpack --progress --watch --mode=development",
"dev": "webpack serve"
},
"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",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"gh-pages": "^1.0.0",
"npm-run-all": "^4.1.2",
"prettier": "^2.1.2",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
},
"peerDependencies": {
"cytoscape": "^3.2.0"
},
"dependencies": {
"elkjs": "^0.8.1"
},
"prettier": {
"singleQuote": true
},
"browserslist": [
"ie 9-11",
"firefox >= 4",
"chrome >= 23",
"> 1%",
"last 2 major versions",
"since 2012",
"not op_mini all"
]
}