-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 1.17 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
{
"name": "merge-pr-to-branch",
"version": "0.0.0",
"description": "Merges Pull Requests that are labeled with 'stage'.",
"scripts": {
"build": "tsc -p tsconfig.prod.json",
"format": "prettier --write **/*.ts",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"pretest": "tsc && npm run lint",
"test": "jest __tests__/**",
"test:integration": "jest __integrationtests__/**"
},
"author": "Deliveroo",
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/exec": "^1.0.3",
"@actions/github": "^2.0.0",
"@actions/io": "^1.0.0",
"@actions/tool-cache": "^1.0.0",
"@octokit/rest": "^16.37.0",
"@octokit/webhooks": "^7.0.0",
"lodash": "^4.17.21",
"serialize-error": "^5.0.0"
},
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/lodash": "^4.14.149",
"@types/node": "^12.0.4",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-jest": "^23.7.0",
"jest": "^24.8.0",
"jest-circus": "^24.7.1",
"prettier": "^1.17.1",
"ts-jest": "^24.0.2",
"typescript": "^3.5.1"
}
}