-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
30 lines (30 loc) · 976 Bytes
/
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
{
"name": "actions-cache",
"license": "MIT",
"main": "lib/restore.js",
"version": "1.1.14",
"scripts": {
"watch": "tsc --watch",
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"package": "ncc build -o dist/restore src/restore.ts && ncc build -o dist/save src/save.ts",
"test": "jest",
"all": "yarn build && yarn package",
"release": "yarn all && git add -A && git commit -m=\"Release\" && git push origin master && gh release create \"$(npm version patch --git-tag-version=false)\" -t Release -d=false -n \"\" -p=false && git push --tags"
},
"dependencies": {
"@actions/cache": "^1.0.7",
"@actions/core": "^1.2.3",
"minio": "^7.0.18"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/minio": "^7.0.7",
"@zeit/ncc": "^0.22.3",
"jest": "^27.0.4",
"ts-jest": "^27.0.2",
"typescript": "^4.3.2"
}
}