-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.31 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
{
"name": "gc-cytoscape-plugin",
"version": "0.1.0",
"description": "Experimantal plugin to provide simple visualization for gremlin-console",
"main": "lib/index.js",
"scripts": {
"build": "babel ./src -d lib",
"build:all": "npm run build && npm run build:umd && npm run build:min",
"build:umd": "NODE_ENV=production webpack src/index.js umd/gc-cytoscape-plugin.js --display-error-details --optimize-occurence-order --optimize-dedupe",
"build:min": "NODE_ENV=production webpack -p src/index.js umd/gc-cytoscape-plugin.min.js --optimize-occurence-order --optimize-dedupe",
"build:watch": "npm run build -- --watch"
},
"dependencies": {
"babel-cli": "~6.6.5",
"babel-core": "~6.7.2",
"babel-loader": "~6.2.4",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-preset-es2015": "~6.6.0",
"babel-preset-stage-2": "~6.5.0",
"babel-register": "~6.7.2",
"cytoscape": "^2.6.7",
"gremlin": "jbmusso/gremlin-javascript",
"gremlin-console": "^0.9.7",
"highland": "^2.7.3",
"jquery": "~2.2.1"
},
"devDependencies": {
"webpack": "~1.12.14"
},
"keywords": [
"gremlin",
"console",
"plugin"
],
"author": "Dylan Millikin <dmill@apache.org>",
"license": "Apache-2.0",
"homepage": "https://github.com/PommeVerte/gc-cytoscape-plugin.git"
}