forked from jbrumwell/mock-knex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (39 loc) · 902 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
41
{
"name": "mock-knex",
"version": "0.2.0",
"description": "a knex mock adapter for simulating a db during testing",
"main": "index.js",
"scripts": {
"test": "./node_modules/lab/bin/lab -v -I __BluebirdErrorTypes__"
},
"repository": {
"type": "git",
"url": "https://github.com/colonyamerican/mock-knex.git"
},
"keywords": [
"knex",
"mock",
"bookshelf"
],
"author": "Jason Brumwell",
"license": "MIT",
"bugs": {
"url": "https://github.com/colonyamerican/mock-knex/issues"
},
"homepage": "https://github.com/colonyamerican/mock-knex",
"devDependencies": {
"bookshelf": "^0.7.7",
"jscs": "^1.7.3",
"jscs-jsdoc": "0.0.13",
"jshint": "^2.5.6",
"lab": "^4.7.0",
"sqlite3": "^3.0.8"
},
"peerDependencies": {
"knex": "^0.7.0 || ^0.8.0"
},
"dependencies": {
"bluebird": "^2.9.25",
"lodash": "^2.4.1"
}
}