-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.3 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
{
"name": "serviser-bookshelf",
"version": "0.4.0",
"description": "integrates bookshlef ORM with serviser based projects",
"main": "index.js",
"scripts": {
"coverage": "export NODE_ENV=test; istanbul cover node_modules/mocha/bin/_mocha -- --recursive --ui tdd -R spec tests",
"test": "mocha --ui bdd --colors --check-leaks -t 5000 --reporter spec 'tests/**/*.js'"
},
"testFramework": "mocha",
"keywords": [
"bookshelf",
"orm",
"sql",
"serviser",
"service"
],
"author": "fogine",
"private": false,
"license": "GPL-3.0",
"files": [
"CHANGELOG.md",
"README.md",
"index.js"
],
"peerDependencies": {
"serviser": "^2.0.0"
},
"dependencies": {
"bookshelf": "^0.14.2",
"bookshelf-eloquent": "^0.1.15",
"bookshelf-paranoia": "^0.13.1",
"knex": "^0.16.3",
"lodash": "^4.16.2",
"semver": "^5.1.0"
},
"devDependencies": {
"serviser": "^2.0.0",
"chai": "^3.5.0",
"pg": "^4.5.0",
"pg-hstore": "2.3.*",
"chai-as-promised": "^5.3.0",
"istanbul": "^0.4.3",
"mocha": "^2.5.3",
"sinon-as-promised": "^4.0.0",
"sinon-chai": "^2.8.0",
"sinon": "^1.17.3"
}
}