-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
69 lines (69 loc) · 1.97 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "github-releases-for-automated-package-publishing-action",
"description": "GitHub Action to validate and extract GitHub release information, used for automated package publishing.",
"version": "2.0.1",
"author": {
"name": "Michael Novotny",
"email": "[email protected]",
"url": "https://manovotny.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/manovotny/github-releases-for-automated-package-publishing-action.git"
},
"keywords": [
"action",
"actions",
"automated",
"automation",
"github",
"github-actions",
"npm",
"release",
"publish",
"publishing",
"semver",
"version",
"yarn"
],
"engines": {
"node": ">=16.0.0"
},
"main": "index.js",
"scripts": {
"check": "npm-check -u",
"coverage": "npm run unit -- --coverage",
"build": "ncc build index.js",
"lint": "eslint . --ext .js --ext .json",
"lint-staged": "lint-staged",
"prettier": "prettier --write --ignore-unknown .",
"prettier:check": "prettier --check --ignore-unknown .",
"test": "npm run lint && npm run prettier:check && npm run coverage",
"unit": "jest"
},
"git": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown"
},
"dependencies": {
"@actions/core": "1.10.0",
"@actions/github": "5.1.1",
"dedent": "0.7.0",
"fs-extra": "10.1.0",
"semver": "7.3.8"
},
"devDependencies": {
"@vercel/git-hooks": "1.0.0",
"@vercel/ncc": "0.34.0",
"eslint": "8.8.0",
"eslint-config-get-off-my-lawn": "7.1.0",
"jest": "29.2.2",
"lint-staged": "13.0.3",
"npm-check": "6.0.1",
"prettier": "2.7.1",
"prettier-config-get-off-my-lawn": "1.0.0"
}
}