-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 1.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
{
"name": "lambda-bluehost-github-release-api",
"description": "An AWS Lambda function that pulls information from GitHub about tagged releases to facilitate the update of WordPress plugins.",
"main": "index.js",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/bluehost/lambda-bluehost-github-release-api.git"
},
"bugs": {
"url": "https://github.com/bluehost/lambda-bluehost-github-release-api/issues"
},
"homepage": "https://github.com/bluehost/lambda-bluehost-github-release-api#readme",
"author": "Micah Wood <[email protected]>",
"license": "GPL-2.0-or-later",
"scripts": {
"deploy": "node deploy.js",
"lint": "yamllint --ignore=node_modules/** **/*.yml",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"node-fetch": "^2.6.1"
},
"devDependencies": {
"aws-sdk": "^2.747.0",
"husky": "^4.2.5",
"lint-staged": "^10.1.7",
"yaml-lint": "^1.2.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.yml": [
"yamllint --ignore=node_modules/**"
]
}
}