-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.38 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
{
"name": "pg-manati",
"version": "0.5.1",
"description": "REST API for PostgreSQL",
"main": "api.js",
"scripts": {
"start": "node standalone.js",
"test": "mocha test/unit/lib/ --require test/unit/bootstrap.js",
"integration": "mocha test/integration/data/*.js test/integration/authentication/*.js --require test/integration/bootstrap.js -t 10000",
"coverage": "./node_modules/istanbul-harmony/lib/cli.js cover node_modules/mocha/bin/_mocha -- test/unit/lib/* --require test/unit/bootstrap.js"
},
"config": {
"blanket": {
"pattern": [
"lib"
],
"data-cover-never": [
"node_modules",
"test"
]
}
},
"engine": {
"node": ">= 5.0.0"
},
"author": "[email protected]",
"license": "AGPL-3.0",
"dependencies": {
"bluebird": "^3.4.0",
"boom": "^3.1.1",
"bunyan": "^1.5.1",
"config": "^1.19.0",
"koa": "^1.1.2",
"koa-logger": "^1.3.0",
"koa-parse-json": "^1.0.1",
"koa-router": "^5.3.0",
"lodash": "^4.0.0",
"pg-promise": "^4.0.3",
"sprintf-js": "^1.0.3",
"squel": "^4.2.2"
},
"devDependencies": {
"async": "^1.5.2",
"chai": "^3.5.0",
"chance": "^1.0.1",
"child-process-es6-promise": "^1.0.0",
"istanbul": "^0.4.3",
"istanbul-harmony": "^0.3.16",
"mocha": "^2.4.5",
"sprintf-js": "^1.0.3",
"supertest-koa-agent": "^0.2.1"
}
}