-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.39 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
{
"name": "setup-abq",
"version": "1.0.32",
"private": true,
"description": "This action installs the abq binary.",
"main": "dist/index.js",
"scripts": {
"build": "ncc build -o dist src/index.ts",
"build-check": "npm run build && test -z \"$(git status --porcelain)\"",
"lint": "npx prettier --write 'src/**/*.ts'",
"lint-check": "npx prettier --check 'src/**/*.ts'",
"test": "npm run lint-check && npm run build-check"
},
"repository": {
"type": "git",
"url": "https://github.com/rwx-research/setup-abq.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "rwx",
"license": "MIT",
"engines": {
"node": ">= 20"
},
"dependencies": {
"@actions/core": "1.10.1",
"@actions/tool-cache": "^2.0.1"
},
"devDependencies": {
"@babel/core": "7.24.7",
"@babel/preset-env": "7.24.7",
"@babel/preset-typescript": "7.24.7",
"@types/jest": "29.5.12",
"@types/node": "^20.11.10",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"@vercel/ncc": "0.38.1",
"babel-jest": "29.7.0",
"eslint": "8.57.0",
"eslint-plugin-github": "4.10.2",
"eslint-plugin-jest": "27.9.0",
"fetch-mock-jest": "1.5.1",
"jest": "29.7.0",
"jest-junit": "^16.0.0",
"js-yaml": "4.1.0",
"prettier": "^3.2.5",
"typescript": "^5.3.3"
}
}