-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.42 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
{
"name": "github-publish-release",
"version": "6.0.0",
"description": "",
"main": "index.js",
"bin": {
"github-comment-ci-pr": "./dist/bin/github-comment-ci-pr.js",
"github-comment-pull-request": "./dist/bin/github-comment-pull-request.js",
"github-get-pull-request": "./dist/bin/github-get-pull-request.js",
"github-publish-release": "./dist/bin/github-publish-release.js",
"analyze-commits": "./dist/bin/analyze-commits.js"
},
"files": [
"dist"
],
"scripts": {
"lint": "eslint --ext .ts src",
"build": "tsc",
"postbuild": "chmod +x ./dist/bin/*.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ahmdigital/github-publish-release.git"
},
"author": "ahm",
"license": "MIT",
"bugs": {
"url": "https://github.com/ahmdigital/github-publish-release/issues"
},
"homepage": "https://github.com/ahmdigital/github-publish-release#readme",
"dependencies": {
"@octokit/rest": "^18.12.0",
"@types/lodash": "^4.14.179",
"lodash": "^4.17.19",
"tslib": "^2.3.1"
},
"devDependencies": {
"@ahmdigital/eslint-config": "6.1.19",
"@types/jest": "28.1.1",
"@types/node": "17.0.45",
"jest": "28.1.3",
"ts-jest": "28.0.8",
"ts-node": "10.9.1",
"typescript": "4.9.5"
},
"type": "commonjs",
"renovate": {
"extends": [
"@ahmdigital"
]
},
"engines": {
"node": ">=14.0.0"
}
}