-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 loc) · 1.12 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
{
"name": "koa-pagination",
"version": "4.0.0",
"description": "A middleware to handle Range Pagination Headers using Range & Content-Range entity-headers",
"license": "MIT",
"author": "Uphold",
"main": "src",
"repository": "uphold/koa-pagination",
"scripts": {
"changelog": "github-changelog-generator -f v$npm_package_version > CHANGELOG.md",
"lint": "eslint src test",
"lint-staged": "lint-staged",
"test": "jest --coverage --verbose --env=node",
"version": "npm run changelog && git add -A CHANGELOG.md"
},
"dependencies": {
"debug": "^4.1.1",
"http-content-range-format": "^1.0.0",
"range-specifier-parser": "^1.0.2",
"standard-http-error": "^2.0.1"
},
"devDependencies": {
"@uphold/github-changelog-generator": "^1.0.1",
"eslint": "^6.5.1",
"eslint-config-uphold": "^1.0.1",
"jest": "^24.9.0",
"koa": "^2.10.0",
"lint-staged": "^9.4.2",
"pre-commit": "^1.2.2",
"prettier": "^1.18.2",
"supertest": "^4.0.2"
},
"engines": {
"node": ">=8.16.0"
},
"lint-staged": {
"*.js": "eslint"
},
"pre-commit": [
"lint-staged"
]
}