forked from cytoscape/cytoscape.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
142 lines (142 loc) · 3.35 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "cytoscape",
"version": "3.2.3",
"license": "MIT",
"description": "Graph theory (a.k.a. network) library for analysis and visualisation",
"homepage": "http://js.cytoscape.org",
"repository": {
"type": "git",
"url": "https://github.com/cytoscape/cytoscape.js.git"
},
"bugs": {
"url": "https://github.com/cytoscape/cytoscape.js/issues"
},
"author": {
"name": "Max Franz",
"email": "maxkfranz@gmail.com",
"url": "http://maxfranz.com"
},
"contributors": [
{
"name": "Max Franz",
"email": "maxkfranz@gmail.com",
"url": "http://maxfranz.com"
},
{
"name": "Christian Lopes",
"email": "chrtannus@gmail.com"
},
{
"name": "Yue Dong",
"email": "oryato@gmail.com"
},
{
"name": "Onur Sumer",
"email": "s.onur.sumer@gmail.com"
},
{
"name": "Gerardo Huck",
"email": "gerardohuck@gmail.com"
},
{
"name": "Dylan Fong",
"email": "dylanfong.ut@gmail.com"
},
{
"name": "Joseph Stahl",
"email": "joseph@josephstahl.com"
}
],
"keywords": [
"graph",
"graph-theory",
"network",
"node",
"edge",
"vertex",
"link",
"analysis",
"visualisation",
"visualization",
"draw",
"render",
"biojs",
"cytoscape"
],
"engines": {
"node": ">=0.10"
},
"main": "dist/cytoscape.cjs.js",
"scripts": {
"build": "gulp build",
"build-cjs": "gulp build-cjs",
"build-min": "gulp build-min",
"build-unmin": "gulp build-unmin",
"dist": "gulp dist",
"watch": "gulp watch",
"watch-babel": "gulp watch-babel",
"test": "gulp test",
"test-build": "gulp test-build",
"test-travis": "gulp build-cjs && gulp test-build",
"sniper": "sniper .",
"docs": "gulp docs",
"docs-min": "gulp docs-min",
"docs-pub": "gulp docs-pub",
"docs-push": "gulp docs-push",
"docs-push-unstable": "gulp docs-push-unstable",
"zip": "gulp zip",
"lint": "gulp lint",
"benchmark": "gulp benchmark",
"benchmark-single": "gulp benchmark-single"
},
"devDependencies": {
"bluebird": "^3.5.0",
"gulp-download": "0.0.1",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-env": "^1.5.2",
"benchmark": "^1.0.0",
"chai": "^1.9.0",
"del": "^2.2.0",
"gulp": "^3.9.1",
"gulp-benchmark": "^1.1.1",
"gulp-concat": "^2.6.0",
"gulp-cssmin": "^0.1.4",
"gulp-eslint": "^3.0.1",
"gulp-htmlmin": "^1.3.0",
"gulp-inject": "^4.0.0",
"gulp-livereload": "^3.8.1",
"gulp-load-plugins": "^1.2.0",
"gulp-mocha": "^2.2.0",
"gulp-prompt": "^0.2.0",
"gulp-replace": "^0.5.4",
"gulp-shell": "^0.5.2",
"gulp-uglify": "^1.5.3",
"gulp-unzip": "^0.1.3",
"gulp-util": "^3.0.7",
"gulp-zip": "^3.2.0",
"handlebars": "^4.0.5",
"highlight.js": "^9.3.0",
"jsonlint": "^1.6.2",
"marked": "^0.3.5",
"mocha": "^2.3.2",
"node-notifier": "^4.5.0",
"object-assign": "^4.1.1",
"require-uncached": "^1.0.3",
"run-sequence": "^1.1.5",
"sniper": "^0.2.17",
"vinyl-paths": "^2.1.0",
"webpack": "^2.6.1"
},
"sniper": {
"js": [
"https://cdnjs.cloudflare.com/ajax/libs/fetch/2.0.3/fetch.min.js",
"/build/cytoscape.js"
],
"first": "images"
},
"dependencies": {
"heap": "^0.2.6",
"lodash.debounce": "^4.0.8"
}
}