-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.05 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": "find-github-pull-request",
"version": "1.2.0",
"description": "Find a Github Pull Request in a Github Action",
"main": "dist/index.js",
"author": {
"name": "Kylor Hall",
"email": "kylor@kylorhall.com",
"url": "https://kylorhall.com/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sharesight/find-github-pull-request.git"
},
"bugs": {
"url": "https://github.com/sharesight/find-github-pull-request/issues"
},
"scripts": {
"start": "$(yarn bin ncc) run src/run.ts",
"build": "yarn jest && $(yarn bin ncc) build src/run.ts",
"jest": "NODE_ENV=test $(yarn bin jest)",
"jest:ci": "yarn jest --runInBand --ci --colors --collectCoverage",
"jest:tdd": "yarn jest --watch --verbose"
},
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^17.0.33",
"@vercel/ncc": "^0.36.1",
"jest": "^27.5.1",
"ts-jest": "^27.1.4",
"typescript": "^4.6.4"
}
}