-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.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
{
"name": "somleng",
"version": "5.3.6",
"description": "A Somleng helper library",
"author": "Somleng Dev Team <[email protected]>",
"contributors": [
{
"name": "somleng-node contributors",
"url": "https://github.com/somleng/somleng-node/graphs/contributors"
},
{
"name": "twilio-node contributors",
"url": "https://github.com/twilio/twilio-node/graphs/contributors"
}
],
"keywords": [
"somleng",
"voice",
"sms",
"rest",
"api"
],
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc -w -p tsconfig.json",
"clean": "rm -rf ./lib/",
"test:watch": "jest --watch",
"test": "jest --coverage"
},
"license": "MIT",
"dependencies": {
"twilio": "^5.3.6"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.8",
"@types/jest": "^29.5.14",
"jest": "^29.5.0",
"nock": "^13.5.6",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
},
"repository": {
"type": "git",
"url": "https://github.com/somleng/somleng-node.git"
}
}