This repository has been archived by the owner on Jul 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.54 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
{
"name": "pullquester",
"version": "1.7.2",
"description": "Issues a pull request using configuration files in your current repo.",
"author": "Jonathan Park <https://github.com/park9140>, Sam Noedel <[email protected]>, James Trinklein <https://github.com/jtrinklein>",
"scripts": {
"pretest": "eslint src/ test",
"test": "mocha",
"version:patch": "npm --no-git-tag-version version patch && git add package.json && git commit -m 'version: updated by patch increment'",
"version:minor": "npm --no-git-tag-version version minor && git add package.json && git commit -m 'version: updated by minor increment'",
"version:major": "npm --no-git-tag-version version major && git add package.json && git commit -m 'version: updated by major increment'"
},
"keywords": [
"github",
"manager",
"pull",
"request"
],
"engines": {
"node": ">=8.x"
},
"preferGlobal": true,
"license": "BSD-2-Clause",
"dependencies": {
"commander": "2.11.0",
"cross-spawn": "^5.1.0",
"github": "11.0.0",
"inquirer": "3.2.3",
"lodash": "^4.17.15",
"mute-stream": "0.0.7",
"q": "^1.5.0",
"temp": "^0.8.3"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^4.18.2",
"mocha": "^6.2.0",
"sinon": "^4.1.3"
},
"repository": {
"type": "git",
"url": "https://github.com/daptiv/PullQuester"
},
"publishConfig": {
"registry": "http://registry.npmjs.org"
},
"bugs": {
"url": "http://github.com/daptiv/PullQuester/issues"
},
"bin": {
"pull": "./bin/cli.js"
}
}