-
Notifications
You must be signed in to change notification settings - Fork 122
/
package.json
70 lines (70 loc) · 1.9 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
{
"name": "nestjs-typeorm-paginate",
"author": {
"name": "Ashleigh Simonelli",
"email": "ashleighsimonelli@gmail.com",
"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": "^9.0.5",
"@nestjs/core": "9.4.3",
"@nestjs/testing": "^9.0.5",
"@nestjs/typeorm": "^7.1.0",
"@types/jest": "^27.0.0",
"@types/node": "^20.9.0",
"coveralls": "^3.0.5",
"jest": "^26.6.3",
"mysql": "^2.17.1",
"prettier": "^3.1.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.2",
"ts-jest": "^26.4.4",
"ts-node": "^10.0.0",
"typeorm": "0.3.17",
"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"
},
"peerDependencies": {
"@nestjs/common": "^6.1.1 || ^5.6.2 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0",
"typeorm": "^0.3.0"
},
"jest": {
"coveragePathIgnorePatterns": [
"src/__tests__"
],
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage"
},
"version": "4.0.4",
"dependencies": {}
}