-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
87 lines (87 loc) · 2.16 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
77
78
79
80
81
82
83
84
85
86
87
{
"name": "nestjs-dialogflow",
"version": "3.1.0",
"description": "Dialog flow module that simplify the web hook handling for your NLP application using NestJS :satellite:",
"keywords": [
"NestJS",
"dialogflow",
"google-dialogflow",
"NLP",
"webhook",
"typescript",
"addons"
],
"author": "Adrien de Peretti",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"/lib"
],
"homepage": "https://github.com/adrien2p/nestjs-dialogflow#readme",
"repository": {
"type": "git",
"url": "https://github.com/adrien2p/nestjs-dialogflow"
},
"bugs": {
"url": "https://github.com/adrien2p/nestjs-dialogflow/issues"
},
"engines": {
"node": ">= 8.9.0"
},
"scripts": {
"format": "prettier src/**/*.ts --write",
"build": "tsc -p tsconfig.json",
"test": "node_modules/.bin/jest",
"test:cov": "node_modules/.bin/jest --coverage",
"prepublish:npm": "npm run build",
"publish:npm": "npm run prepublish:npm && npm publish --access public"
},
"devDependencies": {
"@nestjs/common": "^8.2.6",
"@nestjs/core": "^8.2.6",
"@nestjs/platform-express": "^8.2.6",
"@nestjs/testing": "^8.2.6",
"@types/chai": "^4.3.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.0",
"@types/node": "^12.20.42",
"@types/supertest": "^2.0.11",
"chai": "^4.3.4",
"coveralls": "^3.1.1",
"jest": "^27.4.7",
"prettier": "^2.5.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.2",
"sinon": "^12.0.1",
"sinon-express-mock": "^2.2.1",
"supertest": "^6.2.2",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
},
"peerDependencies": {
"@nestjs/common": ">=8.2.6",
"@nestjs/core": ">=8.2.6",
"rxjs": "^7.5.0"
},
"dependencies": {
"@nestjs-plus/discovery": "^2.0.2"
},
"jest": {
"rootDir": "./",
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/?(*.)+(spec|test).[jt]s?(x)"
],
"coveragePathIgnorePatterns": [
"node_modules/",
"__tests__/"
],
"coverageReporters": [
"lcov"
],
"coverageDirectory": "../coverage",
"collectCoverage": true
}
}