-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.88 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
{
"name": "nestjs-shell",
"version": "1.4.1",
"description": "An interactive shell for NestJS which allows you to plug-in your custom commands and use them when the app's running",
"keywords": [
"nest",
"nestjs",
"shell",
"console"
],
"author": {
"name": "Bart Stefanski",
"email": "[email protected]",
"url": "https://bstefanski.com/"
},
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.json",
"format": "prettier --write \"lib/**/*.ts\" \"lib/**/*.spec.ts\"",
"prepublish": "npm run format",
"publish": "",
"test": "jest",
"test:cov": "jest --coverage"
},
"peerDependencies": {
"@nestjs/common": "^8.0.4",
"@nestjs/core": "^9.0.5",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.2.0"
},
"devDependencies": {
"@nestjs/cli": "^8.0.2",
"@nestjs/common": "^8.0.4",
"@nestjs/core": "^9.0.5",
"@nestjs/schematics": "^8.0.2",
"@nestjs/testing": "^8.0.4",
"@types/express": "^4.17.13",
"@types/jest": "^26.0.24",
"@types/node": "^16.4.3",
"@types/supertest": "^2.0.11",
"coveralls": "^3.1.0",
"jest": "^27.0.6",
"prettier": "^2.0.5",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^6.6.3",
"supertest": "^4.0.2",
"ts-jest": "^27.0.4",
"ts-loader": "^9.2.4",
"ts-node": "^10.1.0",
"tsconfig-paths": "^3.9.0",
"tslint": "^6.1.2",
"tslint-config-airbnb": "^5.11.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.6.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "lib",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"lib/__stubs__"
]
}
}