-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
61 lines (61 loc) · 1.68 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-all-paths",
"version": "0.1.0",
"description": "Get all possible paths",
"main": "cytoscape-all-paths.js",
"author": {
"name": "daniel.xiao",
"email": "danielwxx@gmail.com"
},
"scripts": {
"postpublish": "run-s gh-pages:demo gh-pages:deploy gh-pages:clean",
"gh-pages:demo": "cpy demo.html cytoscape-all-paths.js demo",
"gh-pages:deploy": "gh-pages -d demo",
"gh-pages:clean": "rimraf index.html",
"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": "webpack --progress --watch",
"dev": "webpack-dev-server --open",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/daniel-dx/cytoscape-all-paths.git"
},
"keywords": [
"cytoscape",
"cytoscape-extension",
"all paths"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/daniel-dx/cytoscape-all-paths/issues"
},
"homepage": "https://github.com/daniel-dx/cytoscape-all-paths",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"babel-loader": "^8.0.6",
"camelcase": "^4.1.0",
"chai": "4.0.2",
"cpy": "^7.2.0",
"cpy-cli": "^2.0.0",
"cross-env": "^5.0.0",
"eslint": "^3.9.1",
"gh-pages": "^1.0.0",
"mocha": "3.4.2",
"npm-run-all": "^4.1.2",
"rimraf": "^2.6.2",
"update": "^0.7.4",
"updater-license": "^1.0.0",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5"
},
"peerDependencies": {
"cytoscape": "^3.2.0"
},
"dependencies": {}
}