-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
54 lines (54 loc) · 1.54 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
52
53
54
{
"name": "action-local-cache",
"version": "2.1.0",
"private": true,
"description": "A Github Action to save and restore files across job runs directly in the runner's file system",
"main": "dist/main/index.js",
"engines": {
"node": "^18.12.0"
},
"prettier": "@masterworks/eslint-config-masterworks/prettier",
"scripts": {
"all": "npm run format && npm run lint && npm run typecheck && npm run pack && npm test",
"format-check": "prettier --check **/*.ts",
"format": "prettier --write **/*.ts",
"lint": "eslint src/**/*.ts",
"pack": "tsup-node src/main.ts src/post.ts",
"test": "jest",
"typecheck": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MasterworksIO/action-local-cache.git"
},
"keywords": [
"actions",
"node",
"self-hosted",
"runner"
],
"author": "Masterworks",
"license": "MIT",
"dependencies": {
"@actions/core": "1.10.0",
"@actions/io": "1.1.3",
"loglevel": "1.8.1"
},
"devDependencies": {
"@masterworks/eslint-config-masterworks": "github:MasterworksIO/eslint-config-masterworks#2.1.1",
"@types/jest": "29.5.3",
"@types/node": "18.16.19",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"eslint": "8.46.0",
"eslint-plugin-import": "2.28.0",
"eslint-plugin-jest": "27.2.3",
"eslint-plugin-node": "11.1.0",
"jest": "29.6.2",
"jest-circus": "29.6.2",
"prettier": "3.0.0",
"ts-jest": "29.1.1",
"tsup": "7.1.0",
"typescript": "5.1.6"
}
}