forked from nestjsx/nestjs-typeorm-paginate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.95 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
{
"name": "nestjs-typeorm-paginate",
"author": {
"name": "Ashleigh Simonelli",
"email": "[email protected]",
"url": "http://ashleighsimonelli.co.uk"
},
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/nestjsx/nestjs-typeorm-paginate"
},
"description": "A simple pagination function to build a pagination object with types",
"keywords": [
"nestjs",
"typeorm",
"pagination",
"paginate"
],
"devDependencies": {
"@nestjs/common": "^7.5.5",
"@nestjs/core": "^7.5.5",
"@nestjs/testing": "^7.0.0",
"@nestjs/typeorm": "^7.1.0",
"@types/jest": "^27.0.0",
"@types/node": "^16.3.3",
"coveralls": "^3.0.5",
"jest": "^26.6.3",
"mysql": "^2.17.1",
"prettier": "^2.1.2",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.2",
"ts-jest": "^26.4.4",
"ts-node": "^10.0.0",
"typeorm": "^0.2.12",
"typescript": "^4.0.5"
},
"scripts": {
"format": "prettier --write \"**/*.ts\"",
"setup:test": "node_modules/.bin/ts-node node_modules/.bin/typeorm schema:sync",
"test": "jest --runInBand",
"coveralls": "yarn run test:cov --coverageReporters=text-lcov | coveralls",
"test:cov": "jest --coverage",
"build": "rm -rf ./dist && tsc && npm run build:index",
"build:index": "rm -rf ./index.js ./index.d.ts && tsc -d --skipLibCheck ./index.ts",
"prepublish": "npm run format && npm run build",
"postinstall": "node postinstall.js"
},
"peerDependencies": {
"@nestjs/common": "^6.1.1 || ^5.6.2 || ^7.0.0 || ^8.0.0",
"typeorm": "^0.2.12"
},
"jest": {
"coveragePathIgnorePatterns": [
"src/__tests__"
],
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage"
},
"version": "3.1.3",
"dependencies": {
"chalk": "^5.0.0"
}
}