-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
45 lines (45 loc) · 987 Bytes
/
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
{
"name": "ivr-phone-tree-node",
"version": "1.0.0",
"scripts": {
"start": "node index.js",
"test": "NODE_ENV=test && ./node_modules/.bin/eslint . && ./node_modules/.bin/jest"
},
"description": "Create an IVR phone tree with Node and Twilio.",
"author": {
"name": "Omar Ahmed",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TwilioDevEd/ivr-phone-tree-node"
},
"keywords": [
"node",
"ivr",
"twilio",
"express",
"twiml",
"webhooks"
],
"engines": {
"node": ">=6.x"
},
"dependencies": {
"body-parser": "~1.15.2",
"cookie-parser": "~1.4.3",
"debug": "~2.3.2",
"express": "~4.14.0",
"jade": "~1.11.0",
"morgan": "~1.7.0",
"serve-favicon": "~2.3.2",
"stylus": "0.54.5",
"twilio": "^3.0.0-rc.17"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-google": "^0.7.1",
"jest": "^19.0.2"
}
}