-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 2.1 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
{
"name": "action-setup-tools",
"version": "1.0.0",
"description": "GitHub Action to provision supported tools for workflow steps in self-hosted runners",
"main": "index.js",
"type": "module",
"scripts": {
"lint": "eslint .",
"prepare": "ncc build index.js -o dist/main --source-map --license licenses.txt",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage --testTimeout=300000 --verbose",
"test:serial": "node --experimental-vm-modules node_modules/jest/bin/jest.js --runInBand --coverage --testTimeout=300000 --verbose",
"test:debug": "SILLY_LOGGING=1 RUNNER_DEBUG=1 node --experimental-vm-modules node_modules/jest/bin/jest.js --runInBand --coverage --testTimeout=300000 --verbose --detectOpenHandles",
"test:fast": "TEST_FAST=1 node --experimental-vm-modules node_modules/jest/bin/jest.js --testTimeout=30000 --verbose --testPathIgnorePatterns='python|index'",
"all": "npm run lint && npm run prepare && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/open-turo/action-setup-tools.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/open-turo/action-setup-tools/issues"
},
"homepage": "https://github.com/open-turo/action-setup-tools/#readme",
"dependencies": {
"@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.1",
"find-versions": "6.0.0",
"node-fetch": "3.3.2",
"semver": "7.6.3"
},
"devDependencies": {
"@babel/eslint-parser": "7.25.9",
"@eslint/js": "9.16.0",
"@vercel/ncc": "0.38.3",
"eslint": "9.16.0",
"eslint-config-prettier": "9.1.0",
"globals": "15.13.0",
"jest": "29.7.0",
"nock": "13.5.6"
},
"jest": {
"transform": {},
"coverageReporters": [
"lcov",
"html",
"text"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"testutil.js"
],
"testTimeout": 60000
},
"engines": {
"node": ">= 20"
}
}