-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
46 lines (46 loc) · 1 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
{
"name": "typeorm-pagination",
"version": "v2.0.3",
"description": "A pagination plugin for typeorm written for node express",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "mocha --reporter spec",
"build": "tsc",
"prepublish": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/savannabits/typeorm-pagination.git"
},
"keywords": [
"typeorm",
"typescript",
"node",
"express",
"pagination",
"database",
"savannabits"
],
"author": "Sam Maosa",
"license": "MIT",
"bugs": {
"url": "https://github.com/savannabits/typeorm-pagination/issues"
},
"homepage": "https://github.com/savannabits/typeorm-pagination#readme",
"devDependencies": {
"@types/express": "^4.17.6",
"@types/node": "^14.0.6",
"chai": "^4.2.0",
"typescript": "^3.9.3"
},
"dependencies": {
"express": "^4.17.1",
"mocha": "^9.0.1",
"typeorm": "^0.2.25"
},
"files": [
"dist",
"@types"
]
}