forked from twilio-labs/serverless-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.51 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 3.51 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
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "twilio-run",
"version": "3.1.1",
"bin": {
"twilio-functions": "./bin/twilio-run.js",
"twilio-run": "./bin/twilio-run.js",
"twilio-upgrade-config": "./bin/upgrade-config.js"
},
"description": "CLI tool to run Twilio Functions locally for development",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"build": "tsc",
"build:noemit": "tsc --noEmit",
"prepack": "run-s clean build"
},
"keywords": [
"twilio",
"twilio-functions",
"serverless"
],
"repository": {
"type": "git",
"url": "https://github.com/twilio-labs/serverless-toolkit.git"
},
"homepage": "https://github.com/twilio-labs/serverless-toolkit",
"bugs": {
"url": "https://github.com/twilio-labs/serverless-toolkit/issues"
},
"author": "Twilio Inc. <open-source@twilio.com> (https://www.twilio.com/labs)",
"contributors": [
"Dominik Kundel <dkundel@twilio.com> (https://dkundel.com)",
"Phil Nash <philnash@twilio.com> (https://philna.sh)"
],
"license": "MIT",
"dependencies": {
"@twilio-labs/serverless-api": "^5.1.1",
"@twilio-labs/serverless-runtime-types": "^2.1.0",
"@types/express": "4.17.7",
"@types/inquirer": "^6.0.3",
"@types/is-ci": "^2.0.0",
"@types/qs": "^6.9.4",
"@types/semver": "^7.3.6",
"@types/wrap-ansi": "^3.0.0",
"body-parser": "^1.18.3",
"boxen": "^1.3.0",
"chalk": "^2.4.2",
"chokidar": "^3.2.3",
"columnify": "^1.5.4",
"common-tags": "^1.8.0",
"conf": "^5.0.0",
"cosmiconfig": "^7.0.0",
"debug": "^3.1.0",
"dotenv": "^6.2.0",
"express": "^4.16.3",
"express-useragent": "^1.0.13",
"fast-redact": "^1.5.0",
"got": "^9.6.0",
"inquirer": "^6.5.0",
"is-ci": "^2.0.0",
"json5": "^2.1.3",
"listr": "^0.14.3",
"lodash.camelcase": "^4.3.0",
"lodash.debounce": "^4.0.8",
"lodash.flatten": "^4.4.0",
"lodash.kebabcase": "^4.1.1",
"lodash.startcase": "^4.4.0",
"log-symbols": "^2.2.0",
"nocache": "^2.1.0",
"normalize.css": "^8.0.1",
"ora": "^3.3.1",
"ow": "^0.19.0",
"pkg-install": "^1.0.0",
"rimraf": "^3.0.2",
"semver": "^7.3.5",
"serialize-error": "^7.0.1",
"terminal-link": "^1.3.0",
"title": "^3.4.1",
"twilio": "^3.60.0",
"type-fest": "^0.15.1",
"window-size": "^1.1.1",
"wrap-ansi": "^5.1.0",
"yargs": "^13.2.2"
},
"optionalDependencies": {
"ngrok": "^3.3.0"
},
"devDependencies": {
"@twilio/runtime-handler": "^1.1.1",
"@types/cheerio": "^0.22.12",
"@types/common-tags": "^1.8.0",
"@types/debug": "^4.1.4",
"@types/dotenv": "^6.1.1",
"@types/express-useragent": "^0.2.21",
"@types/got": "^9.6.0",
"@types/jest": "^24.0.15",
"@types/json5": "0.0.30",
"@types/listr": "^0.14.0",
"@types/lodash.camelcase": "^4.3.6",
"@types/lodash.debounce": "^4.0.6",
"@types/lodash.flatten": "^4.4.6",
"@types/lodash.kebabcase": "^4.1.6",
"@types/lodash.startcase": "^4.4.6",
"@types/mock-fs": "^4.10.0",
"@types/node": "^14.0.19",
"@types/prompts": "^2.0.1",
"@types/supertest": "^2.0.8",
"@types/title": "^1.0.5",
"@types/window-size": "^0.2.4",
"cheerio": "^1.0.0-rc.2",
"listr-silent-renderer": "^1.1.1",
"mock-fs": "^4.12.0",
"nock": "^12.0.2",
"supertest": "^3.1.0",
"typescript": "^3.9.2"
},
"files": [
"bin/",
"dist/",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=12.22.1"
},
"gitHead": "9382ba7f1c23cdf18ac8bb6cada92340d63491dd"
}