-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.58 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
{
"name": "typescript-github-action-template",
"version": "1.0.0",
"description": "A reusable template for creating a GitHub Action using TypeScript.",
"main": "dist/index.js",
"scripts": {
"build": "esbuild src/index.ts --bundle --platform=node --outfile=dist/index.js",
"formatting": "prettier --check .",
"formatting:fix": "prettier --write .",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"test": "jest --watch --passWithNoTests",
"test:ci": "CI=true jest --passWithNoTests --coverage",
"prepare": "husky install"
},
"volta": {
"node": "18.16.0",
"yarn": "1.22.19"
},
"repository": {
"type": "git",
"url": "git+https://github.com/invitation-homes/typescript-github-action-template.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/invitation-homes/typescript-github-action-template/issues"
},
"homepage": "https://github.com/invitation-homes/typescript-github-action-template#readme",
"dependencies": {
"@actions/core": "^1.10.0"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/jest-when": "^3.5.2",
"@types/node": "^18.16.0",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"esbuild": "0.17.18",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-no-only-tests": "^3.1.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-when": "^3.5.2",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"typescript": "^4.9.5"
}
}