-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.38 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": "@bed-and-breakfast/nestjs-twilio",
"version": "0.0.5",
"description": "Nestjs Twilio provider",
"author": "Bed & Breakfast Europe",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/bed-and-breakfast/nestjs-twilio.git"
},
"homepage": "https://github.com/bed-and-breakfast/nestjs-twilio",
"bugs": "https://github.com/bed-and-breakfast/nestjs-twilio/issues",
"keywords": [
"nestjs",
"twilio"
],
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "commonjs",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && tsc",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"twilio": "^4.11.1"
},
"devDependencies": {
"@nestjs/common": "^9.4.2",
"@nestjs/testing": "^9.4.2",
"@types/jest": "^29.5.1",
"@types/node": "^20.2.5",
"jest": "^29.5.0",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}