forked from golevelup/nestjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.21 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
{
"name": "@golevelup/nestjs-discovery",
"version": "2.3.1",
"description": "A Badass NestJS module for querying your app's controllers, providers and handlers",
"keywords": [
"NestJS",
"discovery",
"modules"
],
"author": "Jesse Carter <[email protected]>",
"homepage": "https://github.com/golevelup/nestjs/blob/master/packages/discovery/README.md",
"license": "MIT",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/golevelup/nestjs.git"
},
"scripts": {
"build": "tsc --build tsconfig.build.json",
"build:watch": "tsc --build tsconfig.build.json --watch",
"test": "jest"
},
"dependencies": {
"lodash": "^4.17.15"
},
"bugs": {
"url": "https://github.com/golevelup/nestjs/issues"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.ts$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}