-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.63 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
{
"name": "@twilio/plugin-sms",
"description": "Twilio CLI plugin for batch send test SMS",
"version": "1.1.0",
"author": "Twilio @twilio",
"bugs": "https://github.com/guevaraf/twilio-cli-plugin-sms/issues",
"dependencies": {
"@oclif/command": "^1.5.20",
"@oclif/config": "^1.15.1",
"@twilio/cli-core": "^5.33.0",
"csv-parser": "^3.0.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.22.2",
"@oclif/test": "^1.2.5",
"@twilio/cli-test": "^2.1.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-oclif": "^3.1.0",
"globby": "^11.0.0",
"mocha": "^7.1.2",
"nyc": "^15.0.1"
},
"engines": {
"node": ">=10.0.0"
},
"files": [
"/oclif.manifest.json",
"/src"
],
"homepage": "https://github.com/guevaraf/twilio-cli-plugin-sms",
"keywords": [
"oclif-plugin"
],
"license": "MIT",
"oclif": {
"name": "sms",
"commands": "./src/commands",
"bin": "twilio",
"repositoryPrefix": "<%- repo %>/blob/<%- version %>/<%- commandPath %>",
"devPlugins": [
"@oclif/plugin-help"
],
"topics": {
"sms": {
"description": "Send SMS messages from console"
}
}
},
"repository": {
"type": "git",
"url": "https://github.com/guevaraf/twilio-cli-plugin-sms.git"
},
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint --ignore-path .gitignore . && npm audit",
"prepack": "oclif-dev manifest && oclif-dev readme",
"test": "nyc --check-coverage --lines 90 --reporter=html --reporter=text mocha --forbid-only \"test/**/*.test.js\"",
"version": "oclif-dev readme && git add README.md"
}
}