forked from nokamoto/merge-conflict-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.31 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
{
"name": "merge-conflict-action",
"version": "0.0.4",
"description": "Github action to notify merge conflict pulls",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"package": "ncc build",
"format": "prettier --write '**/*.ts'",
"lint": "eslint src/**/*.ts",
"test": "jest",
"release-ref": "sed -i \"s/nokamoto\\/merge-conflict-action@v.*/nokamoto\\/merge-conflict-action@v$(cat package.json | jq -r .version)/g\" README.md",
"all": "npm run format && npm run lint && npm run build && npm run package && npm run test && npm run release-ref"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nokamoto/merge-conflict-action.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/nokamoto/merge-conflict-action/issues"
},
"homepage": "https://github.com/nokamoto/merge-conflict-action#readme",
"devDependencies": {
"@types/jest": "^27.5.0",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"@vercel/ncc": "^0.36.0",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"jest": "^27.5.1",
"prettier": "2.8.2",
"ts-jest": "^27.1.4",
"typescript": "^4.9.4"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1"
}
}