generated from freckle/typescript-action-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.06 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
{
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/freckle/aws-s3-lock-action.git"
},
"author": "Freckle",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@aws-sdk/client-s3": "^3.440.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@actions/glob": "^0.4.0",
"@octokit/plugin-rest-endpoint-methods": "^10.1.2",
"@octokit/types": "^12.1.1",
"@types/jest": "^27.4.0",
"@types/node": "^20.8.10",
"@types/uuid": "^9.0.6",
"@vercel/ncc": "^0.38.1",
"jest": "^27.4.7",
"prettier": "^3.0.3",
"ts-jest": "^27.1.3",
"typescript": "^4.9.5"
}
}