UNPKG

5.31 kBJSONView Raw
1{
2 "name": "cytoscape",
3 "version": "3.18.2",
4 "license": "MIT",
5 "description": "Graph theory (a.k.a. network) library for analysis and visualisation",
6 "homepage": "http://js.cytoscape.org",
7 "repository": {
8 "type": "git",
9 "url": "https://github.com/cytoscape/cytoscape.js.git"
10 },
11 "bugs": {
12 "url": "https://github.com/cytoscape/cytoscape.js/issues"
13 },
14 "author": {
15 "name": "Max Franz",
16 "email": "maxkfranz@gmail.com",
17 "url": "http://maxfranz.com"
18 },
19 "contributors": [
20 {
21 "name": "Max Franz",
22 "email": "maxkfranz@gmail.com",
23 "url": "http://maxfranz.com"
24 },
25 {
26 "name": "Christian Lopes",
27 "email": "chrtannus@gmail.com"
28 },
29 {
30 "name": "Yue Dong",
31 "email": "oryato@gmail.com"
32 },
33 {
34 "name": "Onur Sumer",
35 "email": "s.onur.sumer@gmail.com"
36 },
37 {
38 "name": "Gerardo Huck",
39 "email": "gerardohuck@gmail.com"
40 },
41 {
42 "name": "Dylan Fong",
43 "email": "dylanfong.ut@gmail.com"
44 },
45 {
46 "name": "Joseph Stahl",
47 "email": "joseph@josephstahl.com"
48 },
49 {
50 "name": "Tony Mullen",
51 "url": "https://github.com/tonymullen"
52 },
53 {
54 "name": "Alexander Li",
55 "url": "https://github.com/alexcli"
56 },
57 {
58 "name": "Manfred Cheung",
59 "url": "https://github.com/mj3cheun"
60 },
61 {
62 "name": "Bogdan Chadkin",
63 "url": "https://github.com/TrySound"
64 },
65 {
66 "name": "Josejulio Martínez",
67 "url": "https://github.com/josejulio"
68 },
69 {
70 "name": "Rhys Balevicius",
71 "email": "rhysbalevicius@gmail.com",
72 "url": "https://github.com/r-ba"
73 }
74 ],
75 "keywords": [
76 "graph",
77 "graph-theory",
78 "network",
79 "node",
80 "edge",
81 "vertex",
82 "link",
83 "analysis",
84 "visualisation",
85 "visualization",
86 "draw",
87 "render",
88 "biojs",
89 "cytoscape"
90 ],
91 "engines": {
92 "node": ">=0.10"
93 },
94 "main": "dist/cytoscape.cjs.js",
95 "unpkg": "dist/cytoscape.min.js",
96 "jsdelivr": "dist/cytoscape.min.js",
97 "scripts": {
98 "lint": "eslint src benchmark",
99 "build": "rollup -c",
100 "build:esm": "cross-env FILE=esm rollup -c",
101 "build:esm.min": "cross-env FILE=esm.min rollup -c",
102 "build:cjs": "cross-env FILE=cjs rollup -c",
103 "build:umd": "cross-env FILE=umd rollup -c",
104 "build:min": "cross-env FILE=min rollup -c",
105 "clean": "rimraf build/*",
106 "copyright": "node -r esm license-update",
107 "dist:copy": "cpy build/cytoscape.umd.js build/cytoscape.min.js build/cytoscape.cjs.js build/cytoscape.esm.js build/cytoscape.esm.min.js dist",
108 "dist": "cross-env NODE_ENV=production run-s build dist:*",
109 "release": "run-s copyright dist docs",
110 "postpublish": "run-s docs:push",
111 "watch": "run-s watch:fast",
112 "watch:sync": "livereload \"build, debug\" -w 500",
113 "watch:http": "http-server -s -c -1 -o",
114 "watch:fast": "run-p watch:sync watch:http watch:build:fast",
115 "watch:umd": "run-p watch:sync watch:http watch:build:umd",
116 "watch:build:fast": "cross-env FILE=umd SOURCEMAPS=true BABEL=false NODE_ENV=development rollup -c -w",
117 "watch:build:umd": "cross-env FILE=umd SOURCEMAPS=true NODE_ENV=development rollup -c -w",
118 "watch:build:cjs": "cross-env FILE=cjs SOURCEMAPS=true NODE_ENV=development rollup -c -w",
119 "test": "run-s test:js test:modules lint",
120 "test:js": "mocha -r esm --recursive",
121 "test:js:debug": "mocha inspect -r esm --recursive",
122 "test:build": "cross-env TEST_BUILD=true mocha",
123 "test:modules": "mocha -r esm test/modules",
124 "test:modules:debug": "mocha inspect -r esm test/modules",
125 "travis": "run-s build test:build test:modules lint",
126 "docs": "run-s docs:build docs:js",
127 "docs:js": "cpy build/cytoscape.min.js documentation/js",
128 "docs:build": "node documentation/docmaker.js",
129 "docs:push": "gh-pages -d documentation",
130 "benchmark": "run-s benchmark:all",
131 "benchmark:download": "download https://raw.githubusercontent.com/cytoscape/cytoscape.js/master/dist/cytoscape.cjs.js --out build --filename cytoscape.benchmark.js",
132 "benchmark:all:exec": "node benchmark/all",
133 "benchmark:all": "run-s benchmark:download benchmark:all:exec",
134 "benchmark:single:exec": "node benchmark/single",
135 "benchmark:single": "run-s benchmark:download benchmark:single:exec"
136 },
137 "devDependencies": {
138 "@babel/core": "^7.3.4",
139 "@babel/preset-env": "^7.5.5",
140 "@rollup/plugin-babel": "^5.0.0",
141 "@rollup/plugin-commonjs": "^11.1.0",
142 "@rollup/plugin-node-resolve": "^7.1.3",
143 "@rollup/plugin-replace": "^2.3.2",
144 "benchmark": "^2.1.4",
145 "bluebird": "^3.5.0",
146 "chai": "^4.1.2",
147 "cpy-cli": "^3.1.1",
148 "cross-env": "^7.0.0",
149 "download-cli": "^1.0.5",
150 "eslint": "^6.0.0",
151 "esm": "^3.2.25",
152 "gh-pages": "^2.1.1",
153 "handlebars": "^4.7.6",
154 "highlight.js": "^10.0.0",
155 "http-server": "^0.12.3",
156 "jsonlint": "^1.6.2",
157 "livereload": "^0.9.1",
158 "marked": "^1.0.0",
159 "mocha": "^7.1.2",
160 "npm-run-all": "^4.1.5",
161 "rimraf": "^3.0.0",
162 "rollup": "^2.8.2",
163 "rollup-plugin-license": "^2.0.0",
164 "rollup-plugin-size-snapshot": "^0.11.0",
165 "rollup-plugin-terser": "^5.3.0"
166 },
167 "dependencies": {
168 "heap": "^0.2.6",
169 "lodash.debounce": "^4.0.8"
170 }
171}