-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.08 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
{
"name": "nest-utilities",
"version": "8.4.11",
"description": "Extends Nestjs projects using Fundering with endpoint helpers",
"main": "distribution/index.js",
"types": "distribution/index.d.ts",
"scripts": {
"prepublishOnly": "npm run build",
"test": "npm run build",
"build": "npm i && npm run clean && tsc",
"clean": "rimraf distribution/*"
},
"devDependencies": {
"@nestjs/common": "8.4.6",
"@types/express": "4.17.1",
"mongoose": "5.12.3",
"rimraf": "3.0.0",
"typescript": "4.5.5",
"fundering": "1.4.7",
"rxjs": "7.5.5"
},
"peerDependencies": {
"@nestjs/common": ">= 8.x",
"@nestjs/core": ">= 8.x",
"fundering": ">= 1.3.x",
"rxjs": ">= 7.1.x",
"mongoose": ">= 5.12"
},
"repository": "git+https://github.com/MartinDrost/nest-utilities.git",
"author": "MartinDrost",
"license": "ISC",
"bugs": "https://github.com/MartinDrost/nest-utilities/issues",
"homepage": "https://github.com/MartinDrost/nest-utilities#readme",
"keywords": [
"nestjs",
"restful",
"typescript",
"fundering"
]
}