-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.01 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
{
"name": "patchup-action",
"version": "0.0.1",
"description": "A GitHub Action to keep your fork up to date and apply local patches on top of it",
"main": "index.js",
"scripts": {
"lint": "xo",
"package": "ncc build index.js -o dist",
"test": "xo && jest",
"test:nolint": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/javascript-action.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript",
"git",
"patch"
],
"author": "Matt Bond",
"license": "MIT",
"bugs": {
"url": "https://github.com/actions/javascript-action/issues"
},
"homepage": "https://github.com/actions/javascript-action#readme",
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/github": "^3.0.0",
"check-types": "^11.1.2",
"simple-git": "^2.5.0"
},
"devDependencies": {
"@zeit/ncc": "^0.22.1",
"jest": "^26.4.2",
"recursive-copy": "^2.0.10",
"rimraf": "^3.0.2",
"tar-fs": "^2.1.0",
"xo": "^0.33.1"
}
}