-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.34 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
{
"name": "github-action-aws-cloudfront",
"version": "0.0.0",
"private": true,
"description": "A GitHub Action to update your CloudFront distribution",
"main": "lib/main.js",
"type": "module",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"format": "prettier --write '**/*.{json,svg,md,yml}'",
"format-check": "prettier --check '**/*.{json,svg,md,yml}'",
"lint": "eslint src/**/*.ts",
"package": "ncc build lib/main.js --source-map --license licenses.txt",
"test": "NODE_OPTIONS=--experimental-vm-modules jest"
},
"engines": {
"node": "^16",
"npm": "^8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/badsyntax/github-action-aws-cloudfront.git"
},
"keywords": [
"actions",
"node",
"setup",
"aws",
"cloudfront"
],
"author": "Richard Willis <willis.rh@gmail.com>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@aws-sdk/client-cloudfront": "^3.43.0"
},
"devDependencies": {
"@types/node": "^16.11.11",
"@typescript-eslint/parser": "^5.5.0",
"@vercel/ncc": "^0.36.0",
"eslint": "^8.4.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-github": "^4.3.5",
"eslint-plugin-jest": "^25.3.0",
"jest": "^27.4.3",
"prettier": "2.5.1",
"ts-jest": "^27.1.0",
"typescript": "^4.5.2"
}
}