forked from tibdex/github-rebase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·51 lines (51 loc) · 1.29 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
{
"author": "Thibault Derousseaux <tibdex@gmail.com>",
"dependencies": {
"@octokit/rest": "^16.25.0",
"@types/debug": "^4.1.4",
"@types/node": "^11.13.8",
"debug": "^4.1.1",
"github-cherry-pick": "^1.1.0",
"shared-github-internals": "^1.1.2"
},
"description": "Rebase a pull request using the GitHub REST API",
"devDependencies": {
"@types/jest": "^24.0.12",
"@types/lodash": "^4.14.123",
"jest": "^24.7.1",
"jest-circus": "^24.7.1",
"jest-junit": "^6.4.0",
"lodash": "^4.17.11",
"prettier": "^1.17.0",
"ts-jest": "^24.0.2",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.4.5"
},
"engines": {
"node": ">= 6.11.2"
},
"files": [
"lib/"
],
"keywords": [
"autosquash",
"git",
"github",
"github-rest-v3",
"pull-request",
"rebase"
],
"license": "MIT",
"main": "lib",
"name": "github-rebase",
"repository": "github:tibdex/github-rebase",
"scripts": {
"build": "tsc --build tsconfig.build.json",
"prepublishOnly": "yarn build",
"prettier": "prettier --ignore-path .gitignore \"**/*.{js,json,md,ts,yml}\"",
"test": "jest",
"tslint": "tslint --format stylish --project ."
},
"version": "1.1.0"
}