forked from uiur/github-pr-release
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.57 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
{
"name": "@jawang94/github-pr-release",
"version": "1.5.1",
"description": "Create a release pull request by Github API",
"main": "dist/index.js",
"bin": {
"github-pr-release": "cli/index.js"
},
"author": "Jason Wang",
"contributors": [
"Kazato Sugimoto"
],
"license": "MIT",
"scripts": {
"build": "tsc && cp src/*.mustache dist/",
"test": "mocha -r ts-node/register -r intelli-espower-loader \"test/**/*.ts\"",
"release": "release-it",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/jawang94/github-pr-release"
},
"dependencies": {
"es6-promise": "^2.3.0",
"moment": "^2.9.0",
"mustache": "^3.0.1",
"parse-link-header": "^2.0.0",
"request": "^2.58.0",
"yargs": "^17.3.1"
},
"devDependencies": {
"@types/mocha": "^9.1.0",
"@types/mustache": "^3.2.0",
"@types/parse-link-header": "^1.0.1",
"@types/power-assert": "^1.5.8",
"@types/prettier": "2.4.3",
"@types/request": "^2.48.8",
"@types/yargs": "^17.0.8",
"husky": "^7.0.4",
"intelli-espower-loader": "^1.1.0",
"lint-staged": "^12.2.2",
"mocha": "^10.1.0",
"nock": "^10.0.5",
"power-assert": "^0.11.0",
"prettier": "2.5.1",
"release-it": "^15.5.0",
"standard": "^12.0.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
},
"release-it": {
"github": {
"release": true
},
"npm": {
"skipChecks": true
}
},
"engines": {
"node": ">=0.12.0"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}