-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.21 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
{
"name": "@netacea/cloudfront-worker-template-typescript",
"version": "1.0.0",
"description": "Template for CloudFront Lambda@Edge including Netacea worker scripts",
"main": "./dist/index.js",
"scripts": {
"lint": "npx xo ./src/**/*.ts",
"upgrade": "npm i @netacea/cloudfront@latest && bash ./scripts/create-zip.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Netacea/cloudfront-worker-template-typescript.git"
},
"keywords": [
"netacea",
"cloudfront",
"lambda@edge",
"mitigation"
],
"author": "Jack Scotson <jack.scotson@netacea.com> (https://netacea.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Netacea/cloudfront-worker-template-typescript/issues"
},
"homepage": "https://github.com/Netacea/cloudfront-worker-template-typescript#readme",
"devDependencies": {
"@types/aws-lambda": "^8.10.119",
"@types/node": "^20.4.2",
"typescript": "^5.1.6",
"xo": "^0.55.0"
},
"dependencies": {
"@netacea/cloudfront": "^6.0.20"
},
"xo": {
"space": true,
"semicolon": false,
"rules": {
"unicorn/filename-case": [
"error",
{
"case": "pascalCase"
}
]
}
}
}