forked from outsideris/potential-conflicts-checker-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 896 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
{
"name": "potential-conflicts-checker-action",
"version": "0.1.0",
"description": "Check if this Pull Request can be conflict after other Pull Requests merged",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/outsideris/potential-conflicts-checker-action.git"
},
"keywords": [
"GitHub",
"Actions",
"Pull Request"
],
"author": "Outsider",
"license": "MIT",
"bugs": {
"url": "https://github.com/outsideris/potential-conflicts-checker-action/issues"
},
"homepage": "https://github.com/outsideris/potential-conflicts-checker-action#readme",
"dependencies": {
"@actions/core": "^1.2.3",
"@actions/github": "^2.1.1",
"signale": "^1.4.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.8.0",
"mocha": "^7.1.1"
}
}