-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
55 lines (55 loc) · 1.47 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
55
{
"name": "local-cache",
"version": "1.0.0",
"private": true,
"description": "Github Action to provide caching data by placing a tarball on the local filesystem",
"main": "dist/main/index.ts",
"engines": {
"node": "^20.11.0"
},
"scripts": {
"prepare": "npm run build",
"lint": "eslint src/**.ts --max-warnings=0",
"test": "npm run build && npm run type-check && jest --runInBand",
"build": "rimraf ./dist && tsc",
"type-check": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maxnowack/local-cache.git"
},
"keywords": [
"actions",
"node",
"self-hosted",
"runner"
],
"author": "Max Nowack <[email protected]>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/glob": "^0.4.0",
"@actions/io": "^1.1.3",
"loglevel": "^1.8.1",
"semver": "^7.5.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "^8.38.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prefer-object-spread": "^1.2.1",
"jest": "^29.5.0",
"jest-circus": "^29.5.0",
"rimraf": "^5.0.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}