forked from mikehardy/buildcache-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.28 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.28 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "buildcache-action",
"version": "1.2.2",
"private": false,
"description": "GitHub Action that installs and configures buildcache to accelerate compilation",
"main": "dist/restore/index.js",
"scripts": {
"build": "tsc",
"build-watch": "tsc-watch --onSuccess \"yarn package\"",
"clean": "yarn rimraf __tests__/runner ./dist ./lib ./demo",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint .",
"package-file": "ncc build --target es2020 --source-map --license licenses.txt -o",
"package-restore": "yarn package-file dist/restore src/restore.ts",
"package-save": "yarn package-file dist/save src/save.ts",
"package": "yarn package-restore && yarn package-save",
"test": "jest",
"test-watch": "jest --watch",
"all": "yarn build && yarn format-check && yarn lint && yarn package && yarn test",
"shipit": "npx semantic-release",
"move-v2-tag": "git tag -d v2 && git push origin :refs/tags/v2 && git tag v2 && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/opencor/buildcache-action.git"
},
"keywords": [
"actions",
"node",
"build",
"compile",
"cache",
"buildcache"
],
"author": "Mike Hardy <github@mikehardy.net>",
"license": "MIT",
"dependencies": {
"@actions/artifact": "^2.2.1",
"@actions/cache": "^4.0.0",
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.2"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.7",
"@types/rimraf": "^4.0.5",
"@typescript-eslint/parser": "^8.20.0",
"@vercel/ncc": "^0.38.3",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "^9.18.0",
"eslint-plugin-github": "^5.1.5",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-prettier": "^5.2.3",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"js-yaml": "^4.1.0",
"np": "^10.1.0",
"prettier": "3.4.2",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.1",
"ts-jest": "^29.2.5",
"tsc-watch": "^6.2.1",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=20.0.0"
}
}