-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.08 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
{
"name": "twiliopvtoolkit",
"description": "Voice scripting with the Twilio API",
"version": "0.2.0",
"main": "call.js",
"type": "module",
"author": "Robert Welbourn [email protected] https://linkedin.com/RobertWelbourn",
"license": "MIT",
"homepage": "https://github.com/RobWelbourn/TwilioPVToolkit",
"keywords": [
"Twilio",
"voice",
"JavaScript",
"Node.js"
],
"dependencies": {
"dotenv": "^16.3.1",
"express": "^4.18.2",
"libphonenumber-js": "^1.10.26",
"loglevel": "^1.8.1",
"twilio": "^4.8.0"
},
"devDependencies": {
"jest": "^29.5.0"
},
"engines": {
"node": ">=18"
},
"scripts": {
"test": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js",
"doc": "jsdoc2md src/call.js src/utils/* --partial docs/scope.hbs > docs/docs.md"
},
"jest": {
"testEnvironment": "node",
"transform": {}
},
"repository": {
"type": "git",
"url": "https://github.com/RobWelbourn/TwilioPVToolkit.git"
},
"bugs": {
"url": "https://github.com/RobWelbourn/TwilioPVToolkit/issues"
}
}