forked from mikehardy/buildcache-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.26 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"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 src/**/*.ts",
"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/mikehardy/buildcache-action.git"
},
"keywords": [
"actions",
"node",
"build",
"compile",
"cache",
"buildcache"
],
"author": "Mike Hardy <[email protected]>",
"license": "MIT",
"dependencies": {
"@actions/artifact": "^1.1.1",
"@actions/cache": "^3.2.1",
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.1",
"@actions/tool-cache": "^2.0.1"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.0",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.2",
"@types/rimraf": "^3.0.2",
"@typescript-eslint/parser": "^4.32.0",
"@vercel/ncc": "^0.31.1",
"conventional-changelog-conventionalcommits": "^5.0.0",
"eslint": "^7.32.0",
"eslint-plugin-github": "^4.3.0",
"eslint-plugin-jest": "^24.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.2.4",
"jest-circus": "^27.2.4",
"js-yaml": "^4.1.0",
"np": "^7.5.0",
"prettier": "2.4.1",
"rimraf": "^3.0.2",
"semantic-release": "^18.0.0",
"ts-jest": "^27.0.5",
"tsc-watch": "^4.5.0",
"typescript": "^4.4.3"
},
"engines": {
"node": ">=14.17.0"
}
}