-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
126 lines (126 loc) · 3.38 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
123
124
125
126
{
"name": "lumigo-cli",
"description": "A collection of helpful commands designed to smooth out the development and management of event-based, distributed applications. Lumigo-cli also powers the Stackoscope that runs health-check on Serverless environments to detect security, cost, scalability, resilience, and performance issues.",
"version": "0.40.1",
"author": "Lumigo LTD (https://lumigo.io)",
"bin": {
"lumigo-cli": "./bin/run"
},
"bugs": "https://github.com/lumigo-io/lumigo-cli/issues",
"dependencies": {
"@aws-amplify/auth": "^3.4.12",
"@oclif/command": "^1.5.19",
"@oclif/config": "^1.13.3",
"@oclif/plugin-help": "^2.2.1",
"@octokit/rest": "^16.33.1",
"analytics-node": "^3.4.0-beta.1",
"async": "^3.1.0",
"async-retry": "^1.2.3",
"async-sema": "^3.1.0",
"aws-sdk": "^2.584.0",
"axios": "^0.19.0",
"bluebird": "^3.5.5",
"cli-table": "^0.3.1",
"colors": "^1.3.3",
"humanize": "0.0.9",
"inquirer": "^7.0.0",
"line-reader": "^0.4.0",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"p-queue": "^6.2.0",
"proxy-agent": "^3.1.1",
"restify": "^8.4.0",
"semver": "^6.3.0",
"uuid": "^3.3.3"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.0.0",
"@oclif/dev-cli": "^1.22.2",
"@oclif/test": "^1.2.5",
"chai-as-promised": "^7.1.1",
"codecov": "^3.6.1",
"eslint": "^5.16.0",
"eslint-config-oclif": "^3.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"globby": "^10.0.1",
"husky": "^3.0.0",
"jest": "^24.9.0",
"lint-staged": "^9.1.0",
"prettier": "^1.18.2",
"semantic-release": "^15.13.24"
},
"engines": {
"node": ">=8.12.0"
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src"
],
"homepage": "https://github.com/lumigo-io/lumigo-cli",
"keywords": [
"serverless",
"node",
"nodejs",
"serverless framework",
"serverless applications",
"serverless plugins",
"api gateway",
"lambda",
"aws",
"aws lambda",
"amazon",
"amazon web services"
],
"license": "Apache 2.0",
"main": "src/index.js",
"oclif": {
"commands": "./src/commands",
"bin": "lumigo-cli",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "lumigo-io/lumigo-cli",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint .",
"prepack": "oclif-dev manifest && oclif-dev readme",
"codecov": "codecov",
"test": "jest --config=jest.config.js",
"test:lint": "eslint .",
"version": "oclif-dev readme && git add README.md",
"semantic-release": "semantic-release",
"prettier:ci": "prettier --list-different \"src/**/*.js\"",
"prettier:fix": "prettier --write \"./src/**/*.js\" && prettier --write \"./test/**/*.js\"",
"eslint:fix": "eslint --fix \"./src/**/*.js\""
},
"prettier": {
"useTabs": true,
"tabWidth": 4,
"printWidth": 90
},
"greenkeeper": {
"ignore": [
"eslint"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"eslint"
]
}
}