-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
42 lines (42 loc) · 1.11 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
{
"name": "create-release",
"version": "1.0.0",
"private": true,
"description": "A better GitHub action for creating a release",
"main": "dist/index.js",
"scripts": {
"postinstall": "git config core.hooksPath .githooks",
"build": "webpack --mode production",
"compile": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thomaseizinger/create-release.git"
},
"author": "Thomas Eizinger",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@octokit/action": "^1.3.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.14.10",
"eslint": "^9.6.0",
"eslint-plugin-github": "^5.0.1",
"eslint-plugin-jest": "^28.6.0",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"mock-env": "^0.2.0",
"prettier": "^3.3.2",
"ts-jest": "^29.2.1",
"ts-loader": "^9.5.1",
"typescript": "^5.5.3",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4"
}
}