forked from benjamin658/typeorm-cursor-pagination
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.54 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
{
"name": "@lastlight/typeorm-cursor-pagination",
"version": "0.11.2",
"description": "[FORK] Cursor-based pagination works with TypeORM.",
"main": "lib/index.js",
"scripts": {
"test": "nyc --reporter=lcov mocha --require ts-node/register test/*.ts",
"coverage": "codecov",
"test:docker": "docker-compose up -d && npm run test && docker-compose down",
"build": "rimraf lib && tsc -p tsconfig.build.json",
"prepublish": "npm run build",
"release": "standard-version",
"publish-lib": "npm run release && npm run build && npm publish"
},
"author": "Salavat Nabiullin <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/LightDev1/typeorm-cursor-pagination.git"
},
"homepage": "https://github.com/LightDev1/typeorm-cursor-pagination",
"keywords": [
"typeorm",
"cursor",
"cursor-based",
"pagination"
],
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.9",
"@types/mocha": "^7.0.1",
"@types/node": "^13.7.7",
"@typescript-eslint/eslint-plugin": "^2.21.0",
"@typescript-eslint/parser": "^2.21.0",
"chai": "^4.2.0",
"codecov": "^3.8.3",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"mocha": "^10.1.0",
"nyc": "^15.1.0",
"pg": "^8.7.3",
"rimraf": "^3.0.2",
"ts-node": "^10.7.0",
"typeorm": "^0.3.9",
"typescript": "^4.7.4"
},
"peerDependencies": {
"typeorm": "^0.3.9"
},
"dependencies": {
"standard-version": "^9.5.0"
}
}