-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.11 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
{
"name": "@aravindparappil/cli-pr",
"description": "Interactively create pull requests right from your terminal!",
"version": "1.1.0",
"author": "Aravind Parappil",
"bin": {
"create-pr": "./bin/run"
},
"bugs": "https://github.com/aravindparappil46/cli-pr/issues",
"dependencies": {
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/plugin-help": "^3.2.0",
"@types/inquirer": "^7.3.1",
"inquirer": "^7.3.3",
"tslib": "^1.13.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.22.2",
"@types/node": "^10.17.35",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib"
],
"homepage": "https://github.com/aravindparappil46/cli-pr",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"bin": "create-pr"
},
"repository": "aravindparappil46/cli-pr",
"scripts": {
"prepack": "rm -rf lib && tsc -b && oclif-dev readme",
"test": "echo NO TESTS",
"version": "oclif-dev readme && git add README.md"
},
"types": "lib/index.d.ts"
}