forked from jbmusso/gremlin-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.93 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
{
"name": "gremlin",
"version": "2.0.1",
"description": "JavaScript client for TinkerPop3 Gremlin Server",
"main": "lib/index.js",
"scripts": {
"build": "babel ./src -d lib",
"build:umd": "NODE_ENV=production webpack src/index.js umd/gremlin.js",
"build:min": "NODE_ENV=production webpack -p src/index.js umd/gremlin.min.js",
"build:watch": "npm run build -- --watch",
"test:node": "mocha ./test --compilers js:babel-register --recursive",
"test:node:watch": "npm run test:node -- --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/jbmusso/gremlin-javascript"
},
"keywords": [
"tinkerpop",
"gremlin",
"graphdb",
"graph",
"database"
],
"author": "Jean-Baptiste Musso <jbmusso+github@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jbmusso/gremlin-javascript/issues"
},
"homepage": "https://github.com/jbmusso/gremlin-javascript",
"dependencies": {
"highland": "^2.5.1",
"lodash": "^3.10.1",
"node-uuid": "^1.4.3",
"readable-stream": "^2.0.2",
"ws": "^0.8.0"
},
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-core": "^6.4.0",
"babel-loader": "^6.2.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-2": "^6.3.13",
"babel-register": "^6.3.13",
"babelify": "^5.0.4",
"browserify": "^9.0.3",
"chai": "^2.1.1",
"finalhandler": "^0.1.0",
"gulp": "^3.9.0",
"gulp-buffer": "0.0.2",
"gulp-mocha": "^2.0.0",
"gulp-rename": "^1.2.0",
"gulp-size": "^1.0.0",
"gulp-uglify": "^0.3.1",
"karma": "^0.12.31",
"karma-browserify": "^0.2.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.1.4",
"karma-firefox-launcher": "^0.1.3",
"karma-mocha": "^0.1.10",
"karma-safari-launcher": "^0.1.1",
"mocha": "^1.21.4",
"serve-static": "^1.5.3",
"vinyl-source-stream": "^1.0.0",
"webpack": "^1.12.11",
"yargs": "^1.3.1"
}
}