-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
70 lines (70 loc) · 2.13 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"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": "nyc check-coverage",
"lint": "eslint .",
"test": "nyc _mocha test --exit --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": {
"@hapi/hapi": "^21.3.10",
"bookshelf": ">=1.2.0",
"joi": "^17.13.3"
},
"overrides": {
"bookshelf": {
"knex": "^3.1.0"
}
},
"dependencies": {
"object-hash": "^1.1.4",
"rimraf": "^6.0.1"
},
"devDependencies": {
"@hapi/hapi": "^21.3.10",
"bookshelf": "^1.2.0",
"chai": "4.5.0",
"eslint": "8.57.0",
"eslint-config-lob": "^6.0.0",
"generate-changelog": "^1.8.0",
"hapi-query-filter": "^5.0.0",
"joi": "^17.13.3",
"knex": "^3.1.0",
"mocha": "^10.7.3",
"nyc": "^14.1.1",
"qs": "^6.13.0",
"redis": "^4.7.0",
"sqlite3": "^5.1.7"
},
"nyc": {
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"reporter": [
"lcov",
"text-summary"
]
}
}