-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
58 lines (58 loc) · 1.7 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
{
"name": "rebase",
"version": "3.0.0",
"private": true,
"description": "Rebase pull requests in a repository",
"main": "lib/main.js",
"scripts": {
"vendor": "rm -rf src/vendor/checkout && git clone --depth=1 --branch=v2.5.0 http://github.com/actions/checkout src/vendor/checkout && rm -rf src/vendor/checkout/.git",
"clean": "rm -rf node_modules package-lock.json",
"build-checkout": "tsc -p src/vendor/checkout",
"build": "tsc && ncc build",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"test": "jest unit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peter-evans/rebase.git"
},
"keywords": [
"actions",
"pull",
"rebase"
],
"author": "Peter Evans",
"license": "MIT",
"bugs": {
"url": "https://github.com/peter-evans/rebase/issues"
},
"homepage": "https://github.com/peter-evans/rebase",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/io": "^1.1.2",
"@octokit/core": "^4.2.4",
"checkout": "file:src/vendor/checkout",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^15.6.1",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.25.0",
"@vercel/ncc": "^0.28.6",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-github": "^4.1.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.0.1",
"jest-circus": "^27.0.1",
"js-yaml": "^4.1.0",
"prettier": "^2.3.0",
"ts-jest": "^27.0.1",
"typescript": "^4.3.2"
}
}