forked from cytoscape/cytoscape.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 2.69 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
{
"name": "cytoscape",
"version": "3.1.4",
"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": "[email protected]",
"url": "http://maxfranz.com"
},
"contributors": [
{
"name": "Christian Lopes",
"email": "[email protected]"
},
{
"name": "Yue Dong",
"email": "[email protected]"
},
{
"name": "Onur Sumer",
"email": "[email protected]"
},
{
"name": "Gerardo Huck",
"email": "[email protected]"
},
{
"name": "Dylan Fong",
"email": "[email protected]"
},
{
"name": "Joseph Stahl",
"email": "[email protected]"
}
],
"keywords": [
"graph",
"graph-theory",
"network",
"node",
"edge",
"vertex",
"link",
"analysis",
"visualisation",
"visualization",
"draw",
"render",
"biojs",
"cytoscape"
],
"engines": {
"node": ">=0.10"
},
"main": "src/index.js",
"scripts": {
"build": "gulp build",
"dist": "gulp dist",
"watch": "gulp watch",
"test": "gulp test && gulp test-browserify",
"sniper": "sniper .",
"docs": "gulp docs",
"docspub": "gulp docspub"
},
"devDependencies": {
"benchmark": "^1.0.0",
"bluebird": "^2.0.2",
"browserify": "^13.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-derequire": "^2.1.0",
"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-sourcemaps": "^1.6.0",
"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",
"jscs": "^2.11.0",
"jsonlint": "^1.6.2",
"marked": "^0.3.5",
"mocha": "^2.3.2",
"node-notifier": "^4.5.0",
"run-sequence": "^1.1.5",
"sniper": "^0.2.17",
"vinyl-buffer": "^1.0.0",
"vinyl-paths": "^2.1.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.7.0"
},
"sniper": {
"js": [
"https://cdnjs.cloudflare.com/ajax/libs/fetch/2.0.3/fetch.min.js",
"/build/cytoscape.js"
],
"first": "images"
}
}