-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
81 lines (81 loc) · 2.12 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
{
"name": "@twilio-labs/plugin-assets",
"description": "Easily upload assets to a Twilio Assets service",
"version": "2.0.5",
"author": "Twilio Inc. <[email protected]> (https://www.twilio.com/labs)",
"contributors": [
"Phil Nash <[email protected]>"
],
"main": "src/index.js",
"dependencies": {
"@oclif/core": "^1.14.2",
"@twilio-labs/serverless-api": "^5.5.0",
"@twilio/cli-core": "^7.0.0",
"inquirer": "^8.0.0",
"ora": "^5.4.0",
"project-name-generator": "^2.1.9"
},
"devDependencies": {
"@oclif/plugin-help": "^5.1.12",
"@oclif/test": "^1.2.5",
"@twilio/cli-test": "^2.1.1",
"oclif": "^4.5.4",
"rimraf": "^5.0.5"
},
"engines": {
"node": ">=18"
},
"files": [
"/oclif.manifest.json",
"/src",
"LICENSE",
"README.md"
],
"keywords": [
"oclif-plugin",
"twilio-cli-plugin",
"twilio-ci",
"twilio",
"assets"
],
"license": "MIT",
"oclif": {
"name": "assets",
"commands": "./src/commands",
"bin": "twilio",
"devPlugins": [
"@oclif/plugin-help"
],
"topics": {
"assets": {
"description": "Easily upload assets to a Twilio Assets service"
},
"assets:init": {
"description": "Create a new assets service to use as a bucket"
},
"assets:upload": {
"description": "Upload a new asset to the Assets service"
},
"assets:list": {
"description": "List all the assets in the service"
}
}
},
"publishConfig": {
"access": "public"
},
"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"
},
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"prepack": "oclif manifest && oclif readme",
"version-package": "oclif readme && git add README.md && git commit -m \"chore(@twilio-labs/plugin-assets): version update in readme\" || echo 'Nothing to commit'"
},
"gitHead": "6db273648ed19474f4125042556b10c051529912"
}