generated from clicampo/gh-action-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.56 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
{
"name": "publish-semver-release-action",
"version": "1.1.0",
"private": true,
"description": "🚀 A GitHub action to publish a new release of the repository",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"publish": "npm run build && npm run package",
"test": "vitest",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/clicampo/action-publish-semver-release.git"
},
"keywords": [
"actions"
],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.6.0",
"node-fetch": "^3.2.3"
},
"devDependencies": {
"@actions/exec": "^1.1.1",
"@actions/github": "^5.0.1",
"@antfu/eslint-config": "^0.21.0",
"@types/conventional-changelog": "^3.1.1",
"@types/node": "^17.0.23",
"@typescript-eslint/parser": "^5.8.1",
"@vercel/ncc": "^0.33.3",
"conventional-changelog": "^3.1.25",
"eslint": "^8.13.0",
"jest": "^27.2.5",
"js-yaml": "^4.1.0",
"prettier": "2.6.2",
"ts-jest": "^27.1.2",
"typescript": "^4.6.3",
"vitest": "^0.9.3",
"zx": "^6.0.7",
"husky": "^7.0.0"
}
}