-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
60 lines (60 loc) · 1.36 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
{
"name": "update-lambda-edge",
"version": "1.2.0",
"description": "Scripts for updating CloudFront distributions with new Lambda@Edge function versions",
"main": "index.js",
"bin": "bin/update-lambda-edge",
"scripts": {
"test": "jest",
"prettier": "prettier --write **/*.js *.js bin/update-lambda-edge",
"eslint": "eslint --ext .js .",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/benmarch/update-lambda-edge.git"
},
"keywords": [
"AWS",
"Lambda",
"Lambda@Edge",
"CloudFront",
"Distribution",
"S3",
"Update",
"Test",
"Testing",
"Deploy",
"Publish",
"Activate"
],
"author": "Ben March",
"license": "ISC",
"bugs": {
"url": "https://github.com/benmarch/update-lambda-edge/issues"
},
"homepage": "https://github.com/benmarch/update-lambda-edge#readme",
"dependencies": {
"aws-sdk": "2.1250.0",
"yargs": "16.2.0"
},
"devDependencies": {
"eslint": "8.19.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-jest": "26.5.3",
"husky": "8.0.1",
"jest": "27.5.1",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"temp-write": "4.0.0"
},
"lint-staged": {
"**/*.{js,jsx}": [
"npm run prettier",
"npm run eslint"
],
"packages/**/*.scss": [
"npm run sass-lint"
]
}
}