forked from jbmusso/gremlin-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.78 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
{
"name": "gremlin",
"version": "2.5.1",
"description": "JavaScript client for TinkerPop3 Gremlin Server",
"main": "lib/index.js",
"scripts": {
"prebuild": "rimraf ./lib",
"build": "babel ./src -d lib --ignore '**/*.test.js'",
"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",
"coverage": "babel-node ./node_modules/istanbul/lib/cli.js cover _mocha",
"coverage:travis": "babel-node ./node_modules/istanbul/lib/cli.js cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"examples:browser": "babel-node examples/server",
"examples:node": "babel-node examples/node-example",
"test": "NODE_TLS_REJECT_UNAUTHORIZED=0 mocha $(find src -path '*test.js') --compilers js:babel-register --recursive --reporter spec",
"test:watch": "npm run test -- --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/jbmusso/gremlin-javascript"
},
"keywords": [
"tinkerpop",
"gremlin",
"graphdb",
"graph",
"database"
],
"author": "Jean-Baptiste Musso <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jbmusso/gremlin-javascript/issues"
},
"homepage": "https://github.com/jbmusso/gremlin-javascript",
"dependencies": {
"gremlin-template-string": "^2.0.0",
"highland": "^2.5.1",
"lodash": "^3.10.1",
"node-uuid": "^1.4.3",
"readable-stream": "^2.0.2",
"ws": "^2.3.1",
"zer": "^0.1.0",
"utf8": "^2.0.0"
},
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-core": "^6.4.0",
"babel-loader": "^6.2.1",
"babel-plugin-transform-async-to-module-method": "^6.5.2",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.5.2",
"babel-preset-env": "^1.4.0",
"babel-register": "^6.3.13",
"babelify": "^5.0.4",
"bluebird": "^3.3.3",
"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",
"istanbul": "^0.4.2",
"istanbul-coveralls": "^1.0.3",
"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",
"mocha-lcov-reporter": "^1.2.0",
"rimraf": "^2.6.1",
"serve-static": "^1.5.3",
"vinyl-source-stream": "^1.0.0",
"webpack": "^1.12.11",
"yargs": "^1.3.1"
}
}