This repository was archived by the owner on Mar 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
91 lines (91 loc) · 2.57 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
{
"name": "@twilio-labs/plugin-serverless",
"description": "Develop and deploy Twilio Serverless Functions",
"version": "1.8.0",
"author": "Dominik Kundel <[email protected]>",
"bugs": "https://github.com/twilio-labs/plugin-serverless/issues",
"dependencies": {
"@oclif/command": "^1.5.19",
"@oclif/config": "^1.13.3",
"@twilio/cli-core": "^4.3.3",
"create-twilio-function": "^2.3.0",
"lodash.camelcase": "^4.3.0",
"lodash.kebabcase": "^4.1.1",
"twilio-run": "^2.8.0"
},
"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-labs/plugin-serverless",
"keywords": [
"oclif-plugin",
"twilio-cli-plugin",
"twilio-ci",
"twilio",
"serverless",
"functions"
],
"license": "MIT",
"oclif": {
"name": "serverless",
"commands": "./src/commands",
"bin": "twilio",
"devPlugins": [
"@oclif/plugin-help"
],
"topics": {
"serverless": {
"description": "locally develop, debug and deploy to Twilio Serverless "
},
"serverless:init": {
"description": "creates a new Twilio Serverless project"
},
"serverless:promote": {
"description": "moves an active deployment from one environment to another"
},
"serverless:start": {
"description": "starts a local development environment"
},
"serverless:new": {
"description": "bootstraps a new function in your local project"
},
"serverless:list": {
"description": "lists services, projects and similar related to your project"
},
"serverless:deploy": {
"description": "deploys your local serverless project"
}
}
},
"publishConfig": {
"access": "public"
},
"repository": "twilio-labs/plugin-serverless",
"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"
}
}