-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
61 lines (61 loc) · 1.57 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
{
"name": "nest-abstract",
"version": "1.0.0-beta.10",
"description": "NestJS Abstraction Helper",
"repository": "git@github.com:nartc/nest-abstract.git",
"main": "index.js",
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"coveralls": "yarn run coverage --coverageReporters=text-lcov | coveralls",
"test:watch": "jest --watch",
"build": "rm -rf ./dist && tsc && npm run build:index",
"build:index": "rm -rf ./index.js ./index.d.ts && tsc -d --skipLibCheck ./index.ts",
"format": "prettier **/**/*.ts --ignore-path ./.prettierignore --write && git status",
"prepublish": "npm run format && npm run build"
},
"keywords": [
"nestjs",
"abstraction",
"base"
],
"author": {
"name": "Chau Tran",
"email": "ctran2428@gmail.com",
"url": "https://github.com/nartc"
},
"license": "MIT",
"peerDependencies": {
"@nestjs/common": "^5.4.0"
},
"devDependencies": {
"@nestjs/common": "^5.4.0",
"@nestjs/passport": "^5.1.0",
"@nestjs/swagger": "^2.5.1",
"@nestjs/typeorm": "^5.2.2",
"@types/mongoose": "^5.3.1",
"@types/node": "^10.12.10",
"mongoose": "^5.3.13",
"passport": "^0.4.0",
"prettier": "^1.15.2",
"typeorm": "^0.2.9",
"typescript": "^3.1.6"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "./coverage"
},
"dependencies": {
"reflect-metadata": "^0.1.12",
"rxjs": "^6.3.3"
}
}