This repository has been archived by the owner on Jan 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
73 lines (73 loc) · 2.19 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
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "github-mergerine",
"version": "1.15.1",
"description": "GitHub bot to automatically merge PRs matching certain criteria.",
"main": "dist/main.js",
"bin": {
"mergerine": "dist/main.js",
"github-mergerine": "dist/main.js"
},
"repository": "mergerine/github-mergerine",
"license": "MIT",
"scripts": {
"build": "webpack",
"start": "babel-node src",
"start:dist": "node dist",
"lint": "yarn prettier-check && yarn eslint",
"eslint": "yarn eslint:only src",
"eslint:only": "eslint",
"prettier-check": "yarn prettier-check:only '**/*.{js,json,md}'",
"prettier-check:only": "prettier-check",
"format": "yarn format:only '**/*.{js,json,md}'",
"format:only": "prettier --write",
"test": "lint-staged && MERGERINE_CONFIG=mergerine.example.json jest",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"prepublishOnly": "yarn build && yarn test"
},
"husky": {
"hooks": {
"pre-commit": "yarn test",
"pre-push": "yarn test"
}
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/register": "^7.12.1",
"@babel/runtime": "^7.12.5",
"babel-loader": "^8.2.1",
"eslint": "^4.13.1",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^4.3.0",
"jest": "^26.6.3",
"lint-staged": "^6.1.0",
"nock": "^9.1.5",
"prettier": "^1.10.2",
"prettier-check": "^2.0.0",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0",
"webpack-node-externals": "^2.5.2"
},
"dependencies": {
"@commitlint/config-conventional": "^11.0.0",
"@commitlint/lint": "^11.0.0",
"@commitlint/load": "^11.0.0",
"date-fns": "^1.29.0",
"debug": "^3.1.0",
"delay": "^4.1.0",
"express": "^4.16.4",
"fetch-paginate": "^1.1.2",
"lodash": "^4.17.4",
"node-fetch": "^2.1.2",
"parse-github-url": "^1.0.2",
"parse-link-header": "^1.0.1",
"timestring": "^5.0.1",
"yargs": "^16.1.0"
}
}