-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
128 lines (128 loc) · 3.51 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
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": "4.0.3",
"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"
},
"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. <[email protected]> (https://www.twilio.com/labs)",
"contributors": [
"Dominik Kundel <[email protected]> (https://dkundel.com)",
"Phil Nash <[email protected]> (https://philna.sh)"
],
"license": "MIT",
"dependencies": {
"@twilio-labs/serverless-api": "^5.5.2",
"@twilio-labs/serverless-runtime-types": "4.0.1",
"@types/express": "4.17.21",
"@types/inquirer": "^6.0.3",
"@types/is-ci": "^2.0.0",
"@types/qs": "^6.9.4",
"@types/semver": "^7.3.6",
"body-parser": "^1.18.3",
"boxen": "^5.1.2",
"chalk": "^4.1.1",
"chokidar": "^3.2.3",
"columnify": "^1.5.4",
"common-tags": "^1.8.0",
"conf": "^10.0.0",
"cosmiconfig": "^8.0.0",
"debug": "^3.1.0",
"dotenv": "^6.2.0",
"enquirer": "^2.3.6",
"express": "^4.16.3",
"express-useragent": "^1.0.13",
"fast-redact": "^1.5.0",
"got": "^11.8.5",
"inquirer": "^8.1.5",
"is-ci": "^2.0.0",
"json5": "^2.1.3",
"listr2": "^5.0.2",
"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": "^5.4.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": "^4.23.0",
"type-fest": "^0.15.1",
"window-size": "^1.1.1",
"wrap-ansi": "^7.0.0",
"yargs": "^17.2.1"
},
"optionalDependencies": {
"ngrok": "^3.3.0"
},
"devDependencies": {
"@twilio/runtime-handler": "^2.0.3",
"@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": "^26.0.24",
"@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": "^18.0.0",
"@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": "^5.2.0",
"nock": "^12.0.2",
"supertest": "^3.1.0",
"typescript": "^4.9.4",
"@twilio/test-dep": "npm:[email protected]"
},
"files": [
"bin/",
"dist/",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=18.0.0"
},
"gitHead": "6db273648ed19474f4125042556b10c051529912"
}