-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathpackage.json
36 lines (36 loc) · 1.16 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
{
"author": "BRIK Teknologier <post@brik.no> (http://www.brik.no)",
"contributors": [
"Jon Packer <contact@jonpacker.com>",
"Helge Holm <helge.holm@brik.no>",
"Magnus Hoff <magnus.hoff@brik.no>"
],
"main": "lib/seraph.js",
"name": "seraph",
"description": "A thin and familiar layer between node and neo4j's REST api.",
"version": "0.15.3",
"repository": {
"url": "https://github.com/brikteknologier/seraph"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha -R spec -t 10000 -s 2000",
"bolt-test": "TEST_MODE=bolt mocha -R spec -t 300000 -b test/root.js test/node.js test/relationship.js test/query.js test/label.js test/batching.js",
"quick-test": "USE_DIRTY_DATABASE=true NO_STOP=true ./node_modules/mocha/bin/mocha -R spec -t 3000 -s 2000"
},
"license": "MIT",
"dependencies": {
"ascallback": "^1.1.1",
"async": "^1.5.2",
"naan": "^1.3.11",
"neo4j-driver": "^1.1.0-M01",
"request": "^2.83.0",
"seraph-core": "^1.1.1",
"thunkify": "^2.1.2",
"underscore": "^1.8.3"
},
"devDependencies": {
"bluebird-nodeify": "^1.1.1",
"disposable-seraph": "^0.5.1",
"mocha": "^3.4.2"
}
}