This repository has been archived by the owner on Oct 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.68 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
{
"name": "auto-cancel-actions",
"version": "0.0.0-PLACEHOLDER",
"private": true,
"license": "MIT",
"repository": "https://github.com/renovatebot/auto-cancel-actions.git",
"author": "Rhys Arkins <[email protected]>",
"engines": {
"node": "^12.0.0 || >=14.15.0",
"yarn": ">=1.22.0"
},
"scripts": {
"compile": "tsc -p ./tsconfig.app.json",
"eslint": "eslint .",
"eslint:fix": "yarn eslint --fix",
"lint": "run-s eslint prettier",
"lint:fix": "run-s eslint:fix prettier:fix",
"prepare": "run-s compile prepare:*",
"prepare:husky": "husky install",
"prettier": "prettier \"{**/*,*}.*\" -c",
"prettier:fix": "prettier \"{**/*,*}.*\" --write",
"run": "node -r source-map-support/register dist",
"start": "run-s compile run",
"test": "jest"
},
"dependencies": {
"@sindresorhus/is": "4.2.0",
"micromatch": "4.0.4",
"probot": "11.4.1",
"source-map-support": "0.5.20"
},
"devDependencies": {
"@types/jest": "27.0.2",
"@types/micromatch": "4.0.2",
"@types/node": "12.20.33",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-jest": "24.7.0",
"eslint-plugin-promise": "5.1.0",
"husky": "7.0.2",
"jest": "27.2.5",
"jest-circus": "27.2.5",
"nock": "13.1.3",
"npm-run-all": "4.1.5",
"prettier": "2.4.1",
"prettier-plugin-package": "1.3.0",
"pretty-quick": "3.1.1",
"sync-glitch-cli": "2.0.1",
"ts-jest": "27.0.5",
"typescript": "4.4.4"
},
"contributors": [
"Michael Kriese <[email protected]>"
]
}