-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
39 lines (39 loc) · 997 Bytes
/
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
{
"name": "tinkergraph-js",
"version": "3.0.0",
"description": "A pure JavaScript implementation of TinkerPop's TinkerGraph in-memory graph database",
"main": "lib/index.js",
"scripts": {
"test": "mocha --compilers js:babel-register test/**/* --reporter spec",
"test:watch": "npm run test -- --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/gulthor/tinkergraph-js"
},
"keywords": [
"graph",
"database",
"in-memory",
"tinkerpop",
"gremlin",
"traversals"
],
"author": "Jean-Baptiste Musso <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gulthor/tinkergraph-js/issues"
},
"homepage": "https://github.com/gulthor/tinkergraph-js",
"dependencies": {
"lodash": "^4.6.1"
},
"devDependencies": {
"babel-preset-node5": "^11.0.1",
"babel-register": "^6.7.2",
"chai": "^1.9.2",
"gulp": "^3.8.8",
"gulp-mocha": "^2.1.3",
"yargs": "^1.3.2"
}
}