forked from delivery-much/actions-assigner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 917 Bytes
/
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
{
"name": "actions-assigner",
"version": "1.0.0",
"description": "Auto assign PR and request review",
"main": "src/index.js",
"scripts": {
"lint": "standard",
"lint:fix": "standard --fix",
"package": "ncc build src/index.js -o dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/delivery-much/actions-assigner.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript"
],
"author": "@delivery-much",
"license": "ISC",
"bugs": {
"url": "https://github.com/delivery-much/actions-assigner/issues"
},
"homepage": "https://github.com/delivery-much/actions-assigner#readme",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@octokit/rest": "^21.0.2"
},
"devDependencies": {
"@zeit/ncc": "^0.22.3",
"standard": "^17.1.2"
},
"standard": {
"ignore": [
"/dist/*.js"
]
}
}