-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 1.04 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
{
"name": "github-pr-landmine",
"version": "1.0.0",
"description": "A simple, language agnostic solution for creating manual mutation tests directly in-line with a GitHub pull request",
"main": "dist/index.js",
"scripts": {
"test": "npm run build && jest",
"build": "tsc",
"package": "ncc build lib/index.js --source-map --minify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tylermurry/github-pr-landmine.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/tylermurry/github-pr-landmine/issues"
},
"homepage": "https://github.com/tylermurry/github-pr-landmine#readme",
"dependencies": {
"@actions/core": "^1.2.4",
"@actions/github": "^4.0.0",
"@octokit/graphql": "^4.5.4",
"@octokit/rest": "^18.0.4",
"@types/table": "^5.0.0",
"table": "^5.4.6"
},
"devDependencies": {
"@types/node": "^14.6.0",
"jest": "^26.4.2",
"jest-when": "^2.7.2",
"ts-jest": "^26.3.0",
"typescript": "^4.0.2",
"@vercel/ncc": "^0.24.0"
}
}