This repository was archived by the owner on May 13, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.69 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.69 KB
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
{
"name": "task-router-node",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"jshint": "node_modules/jshint/bin/jshint . ",
"test": "TWILIO_ACCOUNT_SID=ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX TWILIO_AUTH_TOKEN=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX MONGO_URI=mongodb://localhost:27017/task-router TWILIO_NUMBER=+15555555555 MISSED_CALLS_EMAIL_ADDRESS=your@email.here HOST=https://yourdomain.com ALICE_NUMBER=+5213300000000 BOB_NUMBER=+5213300000000 NODE_ENV=test ./node_modules/.bin/mocha lib/db-connection spec --recursive --timeout 5000"
},
"description": "Task Router: automate the routing of calls from customers to your support agents using Twilio, Node.js and Express",
"author": {
"name": "Victor Shyba",
"email": "victor.shyba@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/TwilioDevEd/task-router-node"
},
"keywords": [
"node",
"TaskRouter",
"twilio",
"express",
"twiml",
"webhooks"
],
"engines": {
"node": ">=4.6.2"
},
"dependencies": {
"body-parser": "~1.15.2",
"cookie-parser": "~1.4.3",
"debug": "~2.3.3",
"dotenv-safe": "^3.0.0",
"express": "~4.14.0",
"express-session": "^1.14.2",
"lodash": "^4.17.2",
"mongoose": "^4.6.8",
"morgan": "~1.7.0",
"pug": "^2.0.0-beta6",
"q": "1.4.1",
"serve-favicon": "~2.3.2",
"twilio": "3.0.0",
"url": "^0.11.0"
},
"devDependencies": {
"chai": "^3.5.0",
"cheerio": "^0.22.0",
"decache": "^4.1.0",
"jshint": "^2.9.4",
"mocha": "^3.1.2",
"mockery": "^2.0.0",
"nock": "^9.0.2",
"sinon": "^1.17.6",
"sinon-promise": "^0.1.3",
"supertest": "^2.0.1"
}
}