forked from expressjs/express-paginate
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
58 lines (58 loc) · 1.33 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
{
"name": "koa-ctx-paginate",
"description": "Koa pagination middleware and view helpers",
"version": "1.0.0",
"author": "Forward Email LLC",
"bugs": {
"url": "https://github.com/koajs/ctx-paginate/issues"
},
"contributors": [
"Forward Email (https://forwardemail.net)"
],
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"ava": "^5.3.1",
"cross-env": "^7.0.3",
"eslint": "^8.55.0",
"eslint-config-xo-lass": "^2.0.1",
"fixpack": "^4.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.7",
"nyc": "^15.1.0",
"remark-cli": "11",
"remark-preset-github": "^4.0.4",
"xo": "^0.56.0"
},
"engines": {
"node": ">= 16"
},
"files": [
"index.js"
],
"homepage": "https://github.com/koajs/ctx-paginate",
"keywords": [
"better",
"ctx",
"express",
"koa",
"koa-paginate",
"koa-pagination",
"paginate",
"pagination"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/koajs/ctx-paginate.git"
},
"scripts": {
"lint": "xo --fix && remark . -qfo && fixpack",
"prepare": "husky install",
"pretest": "npm run lint",
"test": "npm run test-coverage",
"test-coverage": "cross-env NODE_ENV=test nyc ava"
}
}