-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.34 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
{
"name": "cytoscape-visual-cues",
"version": "1.0.0",
"description": "A template for developing cytoscape.js extension",
"main": "dist/cytoscape-visual-cues.cjs.js",
"module": "dist/cytoscape-visual-cues.esm.js",
"browser": "dist/cytoscape-visual-cues.js",
"author": "",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-typescript": "^8.2.5",
"rollup": "^2.56.3",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"ts-node": "^10.2.1",
"tslib": "^2.3.1",
"typescript": "^4.4.3"
},
"peerDependencies": {
"cytoscape": "^2.7.0 || ^3.0.0"
},
"scripts": {
"build": "rollup -c --environment NODE_ENV:production",
"build-dev": "rollup -c",
"build-tripudio": "rollup -c tripudio.config.js",
"dev": "rollup -c -w",
"demo": "rollup -c demo.config.js -w -m",
"test": "ts-node test/unit/test.ts",
"pretest": "npm run build",
"cy": "cypress open --project ./test",
"e2e": "cypress run --project ./test -b chrome > e2e-test-results.txt"
},
"files": [
"dist"
],
"dependencies": {
"cypress": "^8.4.0",
"html2canvas": "^1.4.1"
},
"repository": {
"url": "https://github.com/tarchintech/cytoscape.js-visual-cues"
}
}