-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
60 lines (60 loc) · 1.58 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"description": "Combine multiple PRs into a single PR",
"main": "lib/main.js",
"scripts": {
"format": "prettier --write '**/*.js'",
"format-check": "prettier --check '**/*.js'",
"lint": "eslint src/**/*.js",
"package": "ncc build src/main.js -o dist --source-map --license licenses.txt",
"test": "(COMBINE_PRS_TEST=true jest && make-coverage-badge --output-path ./badges/coverage.svg) || make-coverage-badge --output-path ./badges/coverage.svg",
"ci-test": "COMBINE_PRS_TEST=true jest",
"all": "npm run format && npm run lint && npm run package",
"bundle": "npm run format && npm run package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/github/combine-prs.git"
},
"keywords": [
"actions",
"dependencies",
"dependabot",
"github",
"pull requests",
"automation"
],
"author": "Grant Birkinbine",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0"
},
"jest": {
"coverageReporters": [
"json-summary",
"text",
"lcov"
],
"collectCoverage": true,
"collectCoverageFrom": [
"./src/**"
],
"coverageThreshold": {
"global": {
"lines": 100,
"functions": 100
}
}
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.25.7",
"@octokit/rest": "^21.0.2",
"@types/node": "^22.7.5",
"@vercel/ncc": "^0.38.2",
"eslint": "^8.52.0",
"eslint-plugin-jest": "^28.8.3",
"jest": "^29.7.0",
"make-coverage-badge": "^1.2.0",
"prettier": "3.3.3"
}
}