-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.14 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
{
"name": "nestjs-auto-mock",
"version": "0.4.1",
"description": "Abstract module for nestjs modules auto mocking",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "echo \"Error: no test specified\" && exit 1",
"prettier": "prettier src/**/*.ts",
"prettier:check": "npm run prettier -- -c",
"prettier:fix": "npm run prettier -- --write",
"eslint:check": "eslint \"src/**/*.ts\"",
"eslint:fix": "npm run eslint:check -- --fix"
},
"author": "MigasEu",
"license": "ISC",
"peerDependencies": {
"@nestjs/common": "^6.7.0 || ^7.0.0 || ^8.0.0 || ^9.0.0",
"@nestjs/core": "^6.7.0 || ^7.0.0 || ^8.0.0 || ^9.0.0",
"@nestjs/testing": "^6.7.0 || ^7.0.0 || ^8.0.0 || ^9.0.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.6.7 || ^7.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.3.2",
"typescript": "^4.3.5"
}
}