forked from golevelup/nestjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.36 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
{
"name": "@golevelup/nestjs-webhooks",
"version": "0.2.16",
"description": "Badass utilities for integrating webhooks and NestJS",
"author": "Jesse Carter <[email protected]>",
"homepage": "https://github.com/golevelup/nestjs#readme",
"license": "MIT",
"keywords": [
"NestJS",
"typescript",
"webhook",
"github",
"stripe",
"slack"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib"
],
"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"
},
"bugs": {
"url": "https://github.com/golevelup/nestjs/issues"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@golevelup/nestjs-common": "^2.0.0",
"@golevelup/nestjs-modules": "^0.7.0"
},
"peerDependencies": {
"body-parser": "^1.19.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.ts$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"gitHead": "6f97aab8ce9d65dc074750a3ee467ec5ff3b9908"
}