forked from lob/hapi-bookshelf-total-count
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.99 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
54
55
56
{
"name": "hapi-bookshelf-total-count",
"version": "5.0.0",
"description": "Hapi plugin used with Bookshelf models to calculate the total number of records that match a query and appends it to the response",
"main": "lib/index.js",
"scripts": {
"enforce": "istanbul check-coverage --statement 100 --branch 100 --function 100 --lines 100",
"lint": "eslint .",
"test": "istanbul cover _mocha -- test --require test/setup.js --recursive --timeout 30000",
"test:raw": "mocha test --require test/setup.js --recursive --timeout 30000",
"release:major": "changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major && git push origin && git push origin --tags",
"release:minor": "changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor && git push origin && git push origin --tags",
"release:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch && git push origin && git push origin --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lob/hapi-bookshelf-total-count.git"
},
"keywords": [
"hapi",
"bookshelf",
"count"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/lob/hapi-bookshelf-total-count/issues"
},
"homepage": "https://github.com/lob/hapi-bookshelf-total-count#readme",
"peerDependencies": {
"bookshelf": ">=0.8.2",
"hapi": "^16.0.0",
"hapi-qs": "1.x"
},
"dependencies": {
"bluebird": "^3.3.4",
"joi": "^8.0.5",
"object-hash": "^1.1.4"
},
"devDependencies": {
"bookshelf": "^0.9.4",
"chai": "^3.0.0",
"eslint": "^1.9.0",
"eslint-config-lob": "^2.0.1",
"generate-changelog": "^1.0.0",
"hapi": "^16.0.0",
"hapi-qs": "1.x",
"hapi-query-filter": "^1.0.1",
"inject-then": "^2.0.5",
"istanbul": "^0.4.2",
"knex": "^0.10.0",
"mocha": "^2.2.5",
"redis": "^2.6.2",
"sqlite3": "^4.0.8"
}
}