-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1007 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
40
{
"name": "dodo-objection",
"description": "Objection.js ORM plugin for Dodo.js framework",
"version": "0.4.0",
"private": false,
"author": {
"name": "Mikael Lepistö",
"email": "[email protected]",
"url": "https://github.com/elhigu"
},
"dependencies": {
"bluebird": "^3.4.6",
"cli-color": "^1.1.0",
"knex-db-manager": "^0.4.0",
"lodash": "^4.16.2",
"moment": "^2.19.1"
},
"peerDependencies": {
"objection": ">=0.8",
"knex": ">=0.12",
"dodo": ">=0.0.14"
},
"devDependencies": {
"chai": "^4.1.2",
"dodo": "0.0.14",
"express": "^4.14.0",
"knex": "0.13.0",
"mocha": "^3.1.0",
"npm-check": "^5.2.3",
"nsp": "^2.6.1",
"objection": "^0.8.0",
"pg": "^7.3.0",
"pg-escape": "^0.2.0",
"sinon": "^4.0.0"
},
"scripts": {
"test": "node_modules/.bin/mocha --slow 10 --timeout 5000 --reporter spec --recursive tests",
"check": "node_modules/.bin/npm-check; node_modules/.bin/nsp check"
}
}