-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.25 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-lasso",
"version": "1.1.4",
"description": "Lasso selection plugin for Cytoscape",
"keywords": [
"cytoscape",
"lasso"
],
"author": "Jan Zak <[email protected]>",
"license": "MIT",
"repository": "github:zakjan/cytoscape-lasso",
"main": "src/index.js",
"browser": "dist/cytoscape-lasso.min.js",
"scripts": {
"build": "rimraf dist && rollup -c",
"dev": "rollup -c -w",
"test": "jest",
"prepublishOnly": "npm run build"
},
"dependencies": {
"point-in-polygon": "^1.0.1"
},
"peerDependencies": {
"cytoscape": "^3.15.2"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/runtime": "^7.10.5",
"@rollup/plugin-babel": "^5.1.0",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@types/cytoscape": "^3.14.11",
"@types/point-in-polygon": "^1.0.0",
"cytoscape": "^3.15.2",
"jest": "^26.1.0",
"jest-simple-summary": "^1.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.22.2",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-visualizer": "^4.0.4",
"typescript": "^4.0.5"
}
}