-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.84 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.84 KB
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
{
"name": "gh-action",
"version": "0.0.0-PLACEHOLDER",
"private": true,
"license": "AGPL-3.0",
"repository": "https://github.com/renovatebot/gh-action.git",
"author": "Rhys Arkins <rhys@arkins.net>",
"main": "dist/index.js",
"engines": {
"node": ">=12.0.0",
"yarn": ">=1.22.0"
},
"scripts": {
"compile": "cd src && ncc build ./index.ts -o ../dist",
"eslint": "eslint .",
"eslint:fix": "yarn eslint --fix",
"lint": "run-s eslint prettier",
"prettier": "prettier \"{**/*,*}.*\" --list-different",
"prettier:fix": "prettier \"{**/*,*}.*\" --write",
"start": "run-s compile && node dist"
},
"dependencies": {
"@actions/core": "1.2.6",
"@actions/exec": "1.0.4",
"@actions/github": "4.0.0",
"@actions/io": "1.0.2",
"@sindresorhus/is": "3.1.2",
"chalk": "4.1.0",
"commander": "5.1.0",
"delay": "4.4.0",
"find-up": "5.0.0",
"got": "11.7.0",
"js-yaml": "3.14.0",
"renovate": "23.39.0",
"semver": "7.3.2",
"strip-ansi": "6.0.0",
"www-authenticate": "0.6.2",
"yawn-yaml": "1.5.0"
},
"devDependencies": {
"@jest/globals": "26.4.2",
"@types/jest": "26.0.14",
"@types/js-yaml": "3.12.4",
"@types/node": "12.12.62",
"@types/semver": "7.3.4",
"@typescript-eslint/eslint-plugin": "4.3.0",
"@typescript-eslint/parser": "4.3.0",
"@zeit/ncc": "0.22.3",
"eslint": "7.10.0",
"eslint-config-prettier": "6.12.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.0.2",
"eslint-plugin-promise": "4.2.1",
"husky": "4.3.0",
"jest": "26.4.2",
"nock": "13.0.4",
"npm-run-all": "4.1.5",
"prettier": "2.1.2",
"prettier-plugin-package": "1.1.0",
"pretty-quick": "3.0.2",
"ts-jest": "26.4.1",
"typescript": "4.0.3"
},
"contributors": [
"Michael Kriese <michael.kriese@visualon.de>"
]
}