-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.29 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
{
"name": "github-action-base-ts",
"version": "1.0.0",
"description": "Base Repo for Typescript GitHub Actions",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "tsc && ncc build lib/src/index.js",
"lint": "eslint",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wesleyscholl/<your_repo>.git"
},
"keywords": ["github", "workflow", "actions"],
"author": "wesley scholl",
"license": "MIT",
"bugs": {
"url": "https://github.com/wesleyscholl/<your_repo>/issues"
},
"homepage": "https://github.com/wesleyscholl/<your_repo>#readme",
"devDependencies": {
"@babel/preset-typescript": "^7.22.15",
"@jest/globals": "^29.7.0",
"@octokit/graphql": "^4.8.0",
"@types/jest": "^29.5.5",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"eslint": "^8.49.0",
"eslint-plugin-jest": "^27.4.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"jest-mock": "^29.7.0",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^5.1.1",
"@octokit/action": "^6.0.5",
"@vercel/ncc": "^0.38.0"
}
}