-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
51 lines (51 loc) · 1.41 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
{
"name": "action-deploy-aws-static-site",
"version": "0.0.0",
"private": true,
"description": "Batteries-included Github action that deploys a static site to AWS Cloudfront, taking care of DNS, SSL certs and S3 buckets",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write src/**/*.ts",
"format-check": "prettier --check src/**/*.ts",
"lint": "eslint src --ext ts --fix",
"package": "ncc build",
"test": "jest",
"deploy": "cdk deploy",
"diff": "cdk diff",
"synth": "cdk synth",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/onramper/action-deploy-aws-static-site.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@types/istanbul-lib-report": "^3.0.0",
"aws-cdk-lib": "^2.112.0"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/node": "^20.5.9",
"@typescript-eslint/parser": "^6.6.0",
"@vercel/ncc": "^0.38.1",
"aws-cdk": "^2.94.0",
"eslint": "^8.54.0",
"eslint-plugin-github": "^4.10.0",
"eslint-plugin-jest": "^27.2.3",
"jest": "^29.7.0",
"jest-circus": "^29.6.4",
"js-yaml": "^4.1.0",
"prettier": "3.0.3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}