generated from freckle/typescript-action-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.26 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
{
"name": "action-name",
"version": "0.0.0",
"description": "Action description",
"main": "lib/main.js",
"scripts": {
"build": "tsc && ncc build lib/acquire.js --out dist/acquire --minify && ncc build lib/release.js --out dist/release --minify",
"format": "prettier --write \"**/*.ts\"",
"format-check": "prettier --check \"**/*.ts\"",
"test": "jest",
"readme": "npx action-docs -u && prettier --write README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/freckle/aws-s3-lock-action.git"
},
"author": "Freckle",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@aws-sdk/client-s3": "^3.726.0",
"@aws-sdk/lib-storage": "^3.723.0",
"ansi-styles": "^6.2.1",
"uuid": "^11.0.2"
},
"devDependencies": {
"@actions/glob": "^0.5.0",
"@octokit/plugin-rest-endpoint-methods": "^13.3.0",
"@octokit/types": "^13.7.0",
"@types/ansi-styles": "^4.2.4",
"@types/jest": "^27.4.0",
"@types/node": "^22.10.5",
"@types/uuid": "^10.0.0",
"@vercel/ncc": "^0.38.3",
"action-docs": "^2.5.1",
"jest": "^27.4.7",
"prettier": "^3.4.2",
"ts-jest": "^27.1.3",
"typescript": "^4.9.5"
}
}