This repository has been archived by the owner on May 9, 2023. It is now read-only.
forked from github/dependabot-action
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
74 lines (74 loc) · 2.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
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
74
{
"name": "dependabot-updater-action",
"version": "2.2.6",
"private": true,
"description": "Runs Dependabot workloads via GitHub Actions.",
"main": "src/main.ts",
"scripts": {
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint --fix **/*.ts",
"lint-check": "eslint **/*.ts",
"package": "ncc build -o dist/main src/main.ts --source-map --license licenses.txt && ncc build -o dist/cleanup src/cleanup.ts --source-map --license licenses.txt",
"test": "SKIP_INTEGRATION_TESTS=true jest --detectOpenHandles",
"test-integration": "jest --detectOpenHandles 'integration'",
"prepare": "husky install",
"dependabot": "ts-node src/cli.ts",
"fetch-images": "ts-node src/fetch-images.ts",
"cleanup-docker": "ts-node src/cleanup.ts",
"update-container-manifest": "ts-node src/update-containers.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/typescript-action.git"
},
"keywords": [
"actions",
"dependabot",
"dependencies"
],
"author": "GitHub",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@octokit/webhooks-types": "^6.3.6",
"axios": "^0.23.0",
"ci": "^2.1.1",
"commander": "^9.4.1",
"dockerode": "^3.3.1",
"npm": "^8.19.2",
"tar-stream": "^2.2.0"
},
"devDependencies": {
"@types/dockerode": "^3.2.6",
"@types/jest": "^27.0.2",
"@types/node": "^18.8.2",
"@types/node-forge": "^1.0.1",
"@types/tar-stream": "^2.2.2",
"@typescript-eslint/parser": "^4.33.0",
"@vercel/ncc": "^0.34.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-github": "^4.1.5",
"eslint-plugin-jest": "^25.2.4",
"husky": "^7.0.4",
"jest": "^27.5.1",
"jest-circus": "^27.3.1",
"js-yaml": "^4.1.0",
"json-server": "^0.17.0",
"lint-staged": "^11.1.1",
"node-forge": "^1.2.1",
"prettier": "2.4.1",
"ts-jest": "^27.1.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"wait-port": "^1.0.1"
},
"lint-staged": {
"src/**/*.ts": [
"prettier --write",
"eslint --fix"
]
}
}