UNPKG

5.17 kBJSONView Raw
1{
2 "name": "cytoscape",
3 "version": "3.12.0",
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\"",
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": "mocha -r esm --recursive",
120 "test:build": "cross-env TEST_BUILD=true mocha",
121 "test:modules": "mocha -r esm test/modules",
122 "ci:build": "run-s build test:build test:modules lint",
123 "ci": "run-s test test:modules lint",
124 "docs": "run-s docs:build docs:js",
125 "docs:js": "cpy build/cytoscape.min.js documentation/js",
126 "docs:build": "node documentation/docmaker.js",
127 "docs:push": "gh-pages -d documentation",
128 "benchmark": "run-s benchmark:single",
129 "benchmark:download": "download https://raw.githubusercontent.com/cytoscape/cytoscape.js/master/dist/cytoscape.js --out build --filename cytoscape.benchmark.js",
130 "benchmark:all:exec": "node benchmark/all",
131 "benchmark:all": "run-s benchmark:download benchmark:all:exec",
132 "benchmark:single:exec": "node benchmark/single",
133 "benchmark:single": "run-s benchmark:download benchmark:single:exec"
134 },
135 "devDependencies": {
136 "@babel/core": "^7.3.4",
137 "@babel/preset-env": "^7.5.5",
138 "benchmark": "^2.1.4",
139 "bluebird": "^3.5.0",
140 "chai": "^4.1.2",
141 "cpy-cli": "^2.0.0",
142 "cross-env": "^6.0.0",
143 "download-cli": "^1.0.5",
144 "eslint": "^6.0.0",
145 "esm": "^3.0.8",
146 "gh-pages": "^2.1.1",
147 "handlebars": "^4.1.2",
148 "highlight.js": "^9.15.6",
149 "http-server": "^0.11.1",
150 "jsonlint": "^1.6.2",
151 "livereload": "^0.7.0",
152 "marked": "^0.7.0",
153 "mocha": "^6.2.2",
154 "npm-run-all": "^4.1.5",
155 "rimraf": "^3.0.0",
156 "rollup": "^1.19.4",
157 "rollup-plugin-babel": "^4.3.0",
158 "rollup-plugin-commonjs": "^10.0.0",
159 "rollup-plugin-license": "^0.11.0",
160 "rollup-plugin-node-resolve": "^5.2.0",
161 "rollup-plugin-replace": "^2.0.0",
162 "rollup-plugin-size-snapshot": "^0.10.0",
163 "rollup-plugin-terser": "^5.0.0"
164 },
165 "dependencies": {
166 "heap": "^0.2.6",
167 "lodash.debounce": "^4.0.8"
168 }
169}