-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
31 lines (31 loc) · 912 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
{
"name": "jugglingdb-arango",
"version": "1.0.0",
"description": "ArangoDb adapter for jugglingdb",
"main": "index.js",
"engines": {
"node": ">=4.4.5"
},
"scripts": {
"test": "node_modules/.bin/mocha test/*.test.js -R spec -t 1000",
"test-coverage": "istanbul cover node_modules/.bin/_mocha -- --reporter landing --no-exit --check-leaks test/",
"test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"
},
"dependencies": {
"aqb": "^2.1.0",
"arangojs": "^5.0.3"
},
"devDependencies": {
"istanbul": "^0.4.4",
"jugglingdb": "^1.0.2",
"mocha": "^2.5.3",
"semicov": "^0.2.0",
"should": "^9.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/m0ppers/jugglingdb-arango.git"
},
"author": "Andreas Streichardt <[email protected]>",
"license": "MIT"
}