forked from twilio/twilio-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
122 lines (122 loc) · 3.31 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
{
"name": "twilio-cli",
"version": "2.13.0",
"description": "unleash the power of Twilio from your command prompt",
"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-dev manifest && oclif-dev readme && npm shrinkwrap && git checkout -- package-lock.json",
"postpack": "rm -f oclif.manifest.json npm-shrinkwrap.json",
"test": "nyc --check-coverage --lines 90 --reporter=html --reporter=text mocha --forbid-only \"test/**/*.test.js\"",
"posttest": "npm run lint && npm audit",
"version": "oclif-dev readme && git add README.md"
},
"dependencies": {
"@oclif/color": "^0.1.2",
"@oclif/command": "^1.7.0",
"@oclif/config": "^1.16.0",
"@oclif/plugin-autocomplete": "^0.2.0",
"@oclif/plugin-help": "^2.2.3",
"@oclif/plugin-plugins": "^1.8.3",
"@oclif/plugin-warn-if-update-available": "^1.7.0",
"@sendgrid/mail": "^7.2.1",
"@twilio/cli-core": "^5.9.1",
"chalk": "^4.1.0",
"file-type": "^14.6.2",
"inquirer": "^7.3.0",
"twilio": "^3.49.4",
"untildify": "^4.0.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.22.2",
"@oclif/test": "^1.2.6",
"@twilio/cli-test": "^2.1.0",
"aws-sdk": "^2.757.0",
"chai": "^4.2.0",
"eslint": "^7.5.0",
"eslint-config-twilio": "^1.28.0",
"eslint-config-twilio-mocha": "^1.28.0",
"globby": "^11.0.1",
"mocha": "^8.0.1",
"nock": "^13.0.2",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"sinon": "^9.0.2",
"tildify": "^2.0.0",
"tmp": "^0.2.1"
},
"optionalDependencies": {
"ngrok": "^3.2.7"
},
"engines": {
"node": ">=10.12.0"
},
"oclif": {
"commands": "./src/commands",
"bin": "twilio",
"scope": "twilio",
"plugins": [
"@oclif/plugin-autocomplete",
"@oclif/plugin-help",
"@oclif/plugin-plugins",
"@oclif/plugin-warn-if-update-available"
],
"warn-if-update-available": {
"timeoutInDays": 1,
"message": "<%= config.name %> update available from <%= chalk.greenBright(config.version) %> to <%= chalk.greenBright(latest) %>.",
"registry": "https://registry.npmjs.org"
},
"topics": {
"phone-numbers": {
"description": "manage Twilio phone numbers"
},
"profiles": {
"description": "manage credentials for Twilio profiles"
}
},
"hooks": {
"init": [
"./src/hooks/init/twilio-api",
"./src/hooks/init/buy-phone-number",
"./src/hooks/init/plugin-verification"
],
"plugins:preinstall": [
"./src/hooks/plugin-install"
],
"command_not_found": [
"./src/hooks/command-not-found"
]
},
"macos": {
"identifier": "com.twilio.cli"
},
"update": {
"s3": {
"bucket": "twilio-cli-prod"
}
}
}
}