-
Notifications
You must be signed in to change notification settings - Fork 79
/
Copy pathpackage.json
155 lines (155 loc) · 4.26 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
{
"name": "twilio-cli",
"version": "5.22.9",
"description": "Unleash the power of Twilio from your command prompt. Visit https://twil.io/cli for don.",
"keywords": [
"oclif"
],
"homepage": "https://github.com/twilio/twilio-cli",
"bugs": "https://github.com/twilio/twilio-cli/issues",
"repository": {
"type": "git",
"url": "https://github.com/twilio/twilio-cli.git"
},
"license": "MIT",
"author": "Twilio @twilio",
"main": "src/index.js",
"bin": {
"twilio": "bin/run"
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src",
"/welcome.js"
],
"scripts": {
"postinstall": "node welcome.js",
"lint": "eslint --ext js --ext jsx src/ test/",
"lint:fix": "npm run lint -- --fix",
"prepack": "oclif manifest && oclif readme && npm shrinkwrap && git checkout -- package-lock.json",
"postpack": "rm -f oclif.manifest.json npm-shrinkwrap.json",
"test": "nyc mocha --forbid-only \"test/**/*.test.js\"",
"posttest": "npm run lint",
"version": "oclif readme && git add README.md"
},
"dependencies": {
"@oclif/core": "^1.16.0",
"@oclif/plugin-autocomplete": "^1.3.0",
"@oclif/plugin-plugins": "^2.1.0",
"@oclif/plugin-update": "^2.1.3",
"@oclif/plugin-version": "^1.1.1",
"@oclif/plugin-warn-if-update-available": "^3.0.18",
"@sendgrid/mail": "^8.1.4",
"@twilio/cli-core": "^7.26.5",
"chalk": "^4.1.2",
"file-type": "^16.5.4",
"hyperlinker": "1.0.0",
"inquirer": "^8.0.0",
"supports-hyperlinks": "2.2.0",
"twilio": "^5.3.0",
"untildify": "^4.0.0"
},
"devDependencies": {
"@actions/core": "^1.0.0",
"@actions/github": "^6.0.0",
"@oclif/dev-cli": "^1.22.2",
"@oclif/test": "^2.1.1",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@twilio/cli-test": "3.0.0",
"aws-sdk": "^2.1361.0",
"chai": "^4.3.4",
"conventional-changelog-conventionalcommits": "^6.0.0",
"eslint": "^7.27.0",
"eslint-config-twilio": "~1.31.0",
"eslint-config-twilio-mocha": "~1.31.0",
"flush-cache": "1.0.1",
"globby": "^11.0.1",
"mocha": "^10.0.0",
"nock": "^13.0.2",
"nyc": "^15.1.0",
"oclif": "^4.10.11",
"proxyquire": "^2.1.3",
"semantic-release": "^22.0.1",
"sinon": "^10.0.0",
"tildify": "^2.0.0",
"tmp": "^0.2.1",
"ts-node": "^10.9.1",
"tslib": "^2.3.1",
"typescript": "^4.4.3"
},
"optionalDependencies": {
"ngrok": "^4.3.3"
},
"engines": {
"node": ">=18.17"
},
"oclif": {
"commands": "./src/commands",
"bin": "twilio",
"scope": "twilio",
"topicSeparator": " ",
"additionalHelpFlags": [
"-h"
],
"additionalVersionFlags": [
"-v"
],
"plugins": [
"@oclif/plugin-autocomplete",
"@oclif/plugin-plugins",
"@oclif/plugin-warn-if-update-available",
"@oclif/plugin-update",
"@oclif/plugin-version"
],
"warn-if-update-available": {
"timeoutInDays": 45,
"message": "<%= config.name %> update available from <%= chalk.greenBright(config.version) %> to <%= chalk.greenBright(latest) %>. For more information: https://twil.io/cli ",
"registry": "https://registry.npmjs.org"
},
"topics": {
"phone-numbers": {
"description": "manage Twilio phone numbers"
},
"profiles": {
"description": "manage credentials for Twilio profiles"
},
"config": {
"description": "manage Twilio CLI configurations"
}
},
"hooks": {
"init": [
"./src/hooks/init/twilio-api",
"./src/hooks/init/buy-phone-number",
"./src/hooks/init/plugin-verification"
],
"plugins:preinstall": [
"./src/hooks/plugin-install"
],
"prerun": [
"./src/hooks/prerun/install-prerun"
],
"postrun": [
"./src/hooks/postrun/plugin-postrun"
],
"command_not_found": [
"./src/hooks/command-not-found"
]
},
"macos": {
"identifier": "com.twilio.cli",
"sign": "Developer ID Installer: Twilio, Inc."
},
"update": {
"s3": {
"xz": true,
"bucket": "twilio-cli-prod"
}
},
"helpClass": "./src/services/twilio-help/custom-help"
}
}