-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
79 lines (79 loc) · 2.12 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
{
"name": "nestjs-twilio",
"version": "4.4.0",
"description": "Injectable Twilio client for Nestjs",
"license": "MIT",
"author": {
"name": "Lazar Karic",
"email": "[email protected]",
"url": "https://lazar.sh"
},
"repository": "https://github.com/lkaric/nestjs-twilio",
"bugs": "https://github.com/lkaric/nestjs-twilio/issues",
"private": false,
"keywords": [
"nestjs",
"twilio",
"sms",
"client",
"sdk",
"typescript",
"nestjs-twilio",
"twilio-nestjs"
],
"source": "lib/index.ts",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build:dist": "pnpm clean:dist && tsc -p tsconfig.build.json",
"test:run": "NODE_ENV=test jest",
"test:watch": "pnpm test:run --watch",
"test:coverage": "pnpm clean:test && pnpm test:run --coverage",
"type-check": "tsc --noEmit",
"lint": "eslint --fix . --ext .js,.ts,.tsx",
"clean:dist": "rimraf dist",
"clean:test": "rimraf coverage",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"dependencies": {
"twilio": "^5.0.2"
},
"peerDependencies": {
"@nestjs/common": ">=9.0.0",
"@nestjs/core": ">=9.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@nestjs/common": "10.3.7",
"@nestjs/core": "10.3.7",
"@nestjs/testing": "10.3.7",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "29.5.12",
"@types/node": "20.12.2",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"jest": "29.7.0",
"lint-staged": "^15.2.2",
"pinst": "^3.0.0",
"prettier": "3.2.5",
"reflect-metadata": "^0.2.2",
"rimraf": "^5.0.5",
"rxjs": "7.8.1",
"semantic-release": "^23.0.6",
"ts-jest": "29.1.2",
"typescript": "5.4.3"
}
}