-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.02 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
{
"name": "blame-alert",
"version": "1.0.0",
"description": "Gihub action which tags users whose code has been removed in a PR",
"main": "src/index.ts",
"scripts": {
"test": "mocha -r ts-node/register src/**/*.specs.ts",
"package": "ncc build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/molleer/blame-alert.git"
},
"author": "David Möller",
"license": "MIT",
"bugs": {
"url": "https://github.com/molleer/blame-alert/issues"
},
"homepage": "https://github.com/molleer/blame-alert#readme",
"devDependencies": {
"@types/mocha": "^8.0.3",
"@types/node": "^14.6.3",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"eslint": "^7.8.1",
"mocha": "^8.1.3",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"dependencies": {
"@actions/core": "^1.2.5",
"@actions/github": "^4.0.0",
"@vercel/ncc": "^0.24.0",
"axios": "^0.20.0",
"github-username": "^5.0.1",
"run-git-command": "^1.2.3"
}
}