-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
75 lines (75 loc) · 1.79 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
71
72
73
74
75
{
"name": "knex-paginate",
"version": "3.1.4",
"description": "Extension of Knex's query builder with `paginate` method that will help with your pagination tasks.",
"main": "lib/index.js",
"types": "types.d.ts",
"files": [
"lib/*",
"types.d.ts"
],
"scripts": {
"test": "jest",
"test:types": "tsd",
"version": "auto-changelog -p && git add CHANGELOG.md",
"release": "release-it --only-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/felixmosh/knex-paginate.git"
},
"keywords": [
"knex",
"pagination",
"paginate"
],
"author": "Felixmosh",
"license": "ISC",
"bugs": {
"url": "https://github.com/felixmosh/knex-paginate/issues"
},
"homepage": "https://github.com/felixmosh/knex-paginate#readme",
"peerDependencies": {
"knex": ">= 0.95.0"
},
"devDependencies": {
"@types/jest": "^29.2.0",
"@types/node": "^18.19.34",
"auto-changelog": "^2.4.0",
"dotenv": "^16.4.5",
"jest": "^29.7.0",
"knex": "^3.1.0",
"knex-mock-client": "^3.0.0",
"mysql2": "^3.10.0",
"prettier": "^3.3.0",
"release-it": "^16.3.0",
"stringcase": "^4.3.1",
"tsd": "^0.31.0"
},
"jest": {
"testEnvironment": "node"
},
"release-it": {
"git": {
"changelog": "npx auto-changelog --stdout --commit-limit false -u --template https://raw.githubusercontent.com/release-it/release-it/master/templates/changelog-compact.hbs"
},
"hooks": {
"before:init": [
"yarn test",
"yarn test:types"
],
"after:bump": "npx auto-changelog -p"
},
"github": {
"release": true
}
},
"tsd": {
"directory": "__tests-tsd__",
"compilerOptions": {
"esModuleInterop": false,
"module": "commonjs",
"target": "ES2017"
}
}
}