-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.69 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.69 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
{
"name": "setup-bab",
"version": "1.0.0",
"private": true,
"description": "GitHub Action to setup bab CLI",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/main.ts -o dist --source-map --license licenses.txt",
"lint": "eslint src __tests__",
"lint:fix": "eslint src __tests__ --fix",
"format": "prettier --write \"src/**/*.ts\" \"__tests__/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"__tests__/**/*.ts\"",
"test": "jest",
"all": "npm run format && npm run lint && npm run build && npm test",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bab-sh/setup-bab.git"
},
"keywords": [
"actions",
"bab",
"setup",
"task-runner",
"cli"
],
"author": "bab-sh",
"license": "MIT",
"bugs": {
"url": "https://github.com/bab-sh/setup-bab/issues"
},
"homepage": "https://github.com/bab-sh/setup-bab#readme",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.2",
"semver": "^7.7.2",
"typed-rest-client": "^2.1.0"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.10",
"@types/semver": "^7.5.8",
"@vercel/ncc": "^0.38.3",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^16.2.7",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0"
},
"engines": {
"node": ">=20"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
}
}