forked from algoan-archive/nestjs-pagination
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 2.86 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@algoan/nestjs-pagination",
"version": "2.0.0",
"description": "NestJS interceptor handling request's pagination",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "tsc -p .",
"commit": "git-cz",
"cover": "nyc --reporter=html --reporter=lcov npm test",
"lint": "tslint ./src/*.ts{,x} ./src/**/*.ts{,x} --project tsconfig.json",
"pretest": "npm run lint && npm run build",
"prettier": "prettier --write '{src,test}/**/*.ts'",
"semantic-release": "semantic-release",
"test": "NODE_ENV=test mocha --reporter spec --exit --require ts-node/register ./test/**/*.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/algoan/nestjs-pagination.git"
},
"files": [
"dist/src"
],
"keywords": [
"nodejs",
"typescript",
"nestjs",
"pagination",
"interceptor"
],
"author": "ccoeurderoy",
"license": "ISC",
"bugs": {
"url": "https://github.com/algoan/nestjs-pagination/issues"
},
"homepage": "https://github.com/algoan/nestjs-pagination#readme",
"lint-staged": {
"{src,test}/**/*.ts": [
"prettier --list-different \"{src,test}/**/*.ts\""
]
},
"nyc": {
"check-coverage": true,
"per-file": true,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"cache": false,
"extension": [
".ts"
]
},
"publishConfig": {
"access": "public"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@commitlint/cli": "^8.3.4",
"@commitlint/config-conventional": "^8.3.4",
"@nestjs/core": "^6.10.14",
"@nestjs/platform-express": "^6.10.14",
"@nestjs/testing": "^6.10.14",
"@semantic-release/commit-analyzer": "^7.0.0",
"@semantic-release/git": "^8.0.0",
"@types/chai": "^4.2.7",
"@types/content-range": "^1.1.0",
"@types/express": "^4.17.2",
"@types/format-link-header": "^2.1.0",
"@types/mocha": "^5.2.7",
"@types/parse-link-header": "^1.0.0",
"@types/supertest": "^2.0.8",
"@yelloan/tslint": "^0.3.0",
"chai": "^4.2.0",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.0.2",
"husky": "^4.0.6",
"lint-staged": "^9.5.0",
"mocha": "^7.0.0",
"nyc": "^15.0.0",
"parse-link-header": "^1.0.1",
"prettier": "^1.19.1",
"semantic-release": "^16.0.1",
"supertest": "^4.0.2",
"ts-node": "^8.6.1",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.4"
},
"dependencies": {
"@nestjs/common": "^6.10.14",
"content-range": "^1.1.0",
"express": "^4.17.1",
"format-link-header": "^3.0.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.4"
}
}