forked from tenthirtyam/setup-task
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.68 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.68 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
{
"name": "setup-task-action",
"version": "1.0.0",
"description": "A GitHub Action for setting up the Task runner (go-task/task) efficiently in workflows.",
"main": "dist/index.js",
"directories": {
"example": "examples"
},
"scripts": {
"test": "jest",
"test:memory": "node --expose-gc --max-old-space-size=4096 node_modules/.bin/jest --runInBand --detectOpenHandles --forceExit",
"build": "npx tsc && npx @vercel/ncc build dist/index.js -o dist/bundle && cp -f dist/bundle/index.js dist/index.js && rm -rf dist/bundle",
"lint": "eslint 'src/**/*.ts' '__tests__/**/*.ts'",
"lint:fix": "eslint --fix 'src/**/*.ts' '__tests__/**/*.ts'",
"format": "prettier --write 'src/**/*.ts' '__tests__/**/*.ts'",
"clean": "rm -rf dist coverage"
},
"keywords": [
"github-action",
"task",
"go-task",
"build-tool",
"task-runner"
],
"author": "Ryan Johnson",
"license": "MIT",
"dependencies": {
"@actions/cache": "^4.1.0",
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/tool-cache": "^2.0.2",
"js-yaml": "^4.1.1"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.5.0",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.54.0",
"eslint": "^9.39.4",
"eslint-plugin-jest": "^29.15.0",
"globals": "^17.4.0",
"jest": "^30.3.0",
"jest-fetch-mock": "^3.0.3",
"prettier": "^3.8.1",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
},
"overrides": {
"inflight": "npm:lru-cache@^11.1.0",
"glob": "^11.0.1",
"form-data": ">=2.5.4",
"undici": "^6.23.0"
}
}