forked from kaiquelupo/plugin-twilio-infra
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
102 lines (102 loc) · 2.75 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
{
"name": "plugin-twilio-infra",
"description": "Develop and deploy your Twilio infrastructure using code",
"version": "0.4.1",
"author": "Kaique Lupo Leite <[email protected]>",
"contributors": [
{
"name": "Giuseppe Verni",
"email": "[email protected]"
},
{
"name": "Maria Bermudez",
"email": "[email protected]"
}
],
"bugs": "https://github.com/twilio-infra-as-code/plugin-twilio-infra/issues",
"dependencies": {
"@oclif/command": "^1.5.19",
"@oclif/config": "^1.13.3",
"@twilio/cli-core": "^4.3.3",
"chalk": "^4.1.0",
"dotenv": "^10.0.0",
"inquirer": "^8.0.0",
"ora": "^5.3.0",
"shelljs": "^0.8.4"
},
"devDependencies": {
"@oclif/dev-cli": "^1.22.2",
"@oclif/plugin-help": "^2.2.1",
"@oclif/test": "^1.2.5",
"@twilio/cli-test": "^2.0.2",
"all-contributors-cli": "^6.7.0",
"chai": "^4.2.0",
"eslint": "^4.19.1",
"eslint-config-oclif": "^1.5.1",
"globby": "^8.0.2",
"mocha": "^5.2.0",
"nyc": "^13.3.0"
},
"engines": {
"node": ">=8.10.0"
},
"files": [
"/oclif.manifest.json",
"/src",
"/yarn.lock",
"LICENSE",
"README.md"
],
"homepage": "https://github.com/twilio-infra-as-code/plugin-twilio-infra",
"keywords": [
"oclif-plugin",
"twilio-cli-plugin",
"twilio-ci",
"twilio"
],
"license": "MIT",
"oclif": {
"name": "infra",
"commands": "./src/commands",
"bin": "twilio",
"devPlugins": [
"@oclif/plugin-help"
],
"topics": {
"infra": {
"description": "Locally develop, debug and deploy infrastructure to Twilio project describing it as code"
},
"infra:new": {
"description": "Creates a new project based on a template"
},
"infra:deploy": {
"description": "Deploys and updates resources described in this directory to a Twilio project"
},
"infra:preview": {
"description": "Previews changes related to resources described in this directory and mapped to a Twilio project"
},
"infra:destroy": {
"description": "Destroy an existing stack and the deployed resources"
},
"infra:environment:new": {
"description": "Create a new environment for the current Twilio project"
},
"infra:environment:get": {
"description": "Get the deployment environment set for the current project"
},
"infra:environment:set": {
"description": "Set the deployment environment for the current project"
}
}
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/twilio-infra-as-code/plugin-twilio-infra"
},
"scripts": {
"linter:fix": "eslint --ignore-path .gitignore . --fix"
}
}