Skip to content
Permalink
f4eefc373b
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
74 lines (74 sloc) 2.17 KB
{
"name": "dependabot-updater-action",
"version": "2.2.2",
"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.6.0",
"@actions/github": "^5.0.0",
"@octokit/webhooks-types": "^5.4.0",
"axios": "^0.23.0",
"ci": "^2.1.1",
"commander": "^9.1.0",
"dockerode": "^3.3.1",
"npm": "^8.5.5",
"tar-stream": "^2.2.0"
},
"devDependencies": {
"@types/dockerode": "^3.2.6",
"@types/jest": "^27.0.2",
"@types/node": "^17.0.21",
"@types/node-forge": "^1.0.1",
"@types/tar-stream": "^2.2.2",
"@typescript-eslint/parser": "^4.33.0",
"@vercel/ncc": "^0.31.1",
"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.7.0",
"typescript": "^4.3.5",
"wait-port": "^0.2.9"
},
"lint-staged": {
"src/**/*.ts": [
"prettier --write",
"eslint --fix"
]
}
}