-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
101 lines (101 loc) · 2.6 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "twilio-interactive-flow",
"version": "0.8.2",
"description": "Easily build phone/sms trees with twilio and express.",
"license": "LGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/ethanresnick/twilio-ivr.git"
},
"author": "Ethan Resnick",
"keywords": [
"twilio",
"twiml",
"ivr",
"call",
"sms",
"phone tree",
"sms flow",
"sms script",
"call script",
"call flow",
"call tree"
],
"main": "build/lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"clean": "rimraf build",
"lint": "tslint --project tsconfig.json --format verbose --config node_modules/@ethanresnick/tslint-config/tslint.json",
"build": "npm run build:lintfree && npm run lint",
"build:lintfree": "npm run clean && echo Using TypeScript && tsc --version && tsc --pretty",
"test": "export NODE_ENV=testing; mocha --compilers ts:ts-node/register --recursive test/**/*Spec.ts test/**/**/*Spec.ts",
"cover": "NODE_ENV=test nyc npm t",
"watch": "npm run build -- --watch",
"watch:lintfree": "npm run build:lintfree -- --watch",
"watch:test": "npm run test -- --watch"
},
"nyc": {
"include": [
"lib/*.ts",
"lib/**/*.ts"
],
"exclude": [
"typings",
"node_modules",
"test",
"config",
"build",
"lib/index.d.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"json",
"html"
],
"all": true
},
"dependencies": {
"@types/body-parser": "1.16.4",
"@types/debug": "0.0.29",
"@types/express": "^4.0.34",
"@types/ramda": "0.24.1",
"@types/twilio": "0.0.8",
"body-parser": "^1.15.2",
"debug": "^2.2.0",
"express": "^4.14.0",
"ramda": "^0.23.0",
"static-expiry": "paulwalker/connect-static-expiry#87354eb859b503364d8d206130b71b258b3a2e80",
"twilio": "ethanresnick/twilio-node#patch-1"
},
"devDependencies": {
"@ethanresnick/tslint-config": "^5.5.0",
"@types/chai": "3.5.2",
"@types/chai-as-promised": "0.0.31",
"@types/mocha": "2.2.41",
"@types/node": "6.0.59",
"@types/sinon": "^1.16.32",
"@types/sinon-chai": "^2.7.27",
"@types/supertest": "^2.0.0",
"chai": "^3.5.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^2.11.15",
"mocha": "^3.0.1",
"nyc": "^11.0.0",
"rimraf": "^2.5.4",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0",
"stream-equal": "^1.0.0",
"supertest": "^2.0.1",
"ts-node": "^3.0.6",
"tslint": "5.5.0",
"typescript": "2.4.1"
},
"engines": {
"node": ">=6.9.1"
}
}