-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
57 lines (57 loc) · 1.64 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
{
"name": "cytoscape-compound-drag-and-drop",
"version": "1.1.0",
"description": "Drag-and-drop UI for creating and editing the children of compound parent nodes",
"main": "cytoscape-compound-drag-and-drop.js",
"author": {
"name": "Max Franz",
"email": "[email protected]"
},
"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": "webpack --progress --watch",
"test": "mocha",
"test:e2e": "npx cucumber-js --profile ci"
},
"repository": {
"type": "git",
"url": "https://github.com/cytoscape/cytoscape.js-compound-drag-and-drop.git"
},
"keywords": [
"cytoscape",
"cytoscape-extension"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/cytoscape/cytoscape.js-compound-drag-and-drop/issues"
},
"homepage": "https://github.com/cytoscape/cytoscape.js-compound-drag-and-drop",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@cucumber/cucumber": "^7.3.1",
"babel-loader": "^8.2.3",
"camelcase": "^6.2.0",
"chai": "^4.3.4",
"cross-env": "^7.0.3",
"eslint": "^8.2.0",
"gh-pages": "^3.2.3",
"mocha": "^9.1.3",
"npm-run-all": "^4.1.5",
"puppeteer": "^11.0.0",
"rimraf": "^3.0.2",
"update": "^0.7.4",
"updater-license": "^1.0.0",
"webpack": "^5.64.0",
"webpack-cli": "^4.9.1"
},
"peerDependencies": {
"cytoscape": "^3.4.0"
}
}