-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 987 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 987 Bytes
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
{
"name": "pagi-help",
"version": "2.5.0",
"description": "Pagination API helper for MySQL and PostgreSQL",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "node test/characterization.test.js",
"typecheck": "npx -p typescript tsc --noEmit --skipLibCheck index.d.ts v2.d.ts",
"pack:dry-run": "npm pack --dry-run",
"release:verify": "npm test && npm run typecheck && npm run pack:dry-run",
"prepublishOnly": "npm run release:verify"
},
"files": [
"index.js",
"index.d.ts",
"v2.js",
"v2.d.ts",
"v2/",
"README.md",
"LICENSE",
"diagram.png",
"AGENTS.md",
"docs/",
"examples/"
],
"keywords": [
"pagination",
"mysql",
"postgres",
"page",
"search",
"util"
],
"repository": {
"type": "git",
"url": "https://github.com/Codebucket-Solutions/PagiHelp.git"
},
"author": "Abhinav Gautam",
"license": "MIT",
"dependencies": {
"sqlstring": "^2.3.3"
}
}