-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
38 lines (38 loc) · 1.04 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
{
"name": "serverless-lambda-edge-pre-existing-cloudfront",
"version": "1.1.6",
"description": "The Serverless Framework plugin which creates Lambda@Edge against pre-existing CloudFront.",
"main": "index.js",
"author": "serverless-operations",
"repository": "serverless-operations/serverless-lambda-edge-pre-existing-cloudfront",
"license": "MIT",
"scripts": {
"lint": "eslint .",
"fmt": "eslint . --fix --cache",
"semantic-release": "semantic-release"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"eslint"
]
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"prettier": "^1.19.1",
"semantic-release": "^17.0.4"
},
"dependencies": {}
}