Skip to content
Permalink
88dd91b7a5
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
71 lines (71 sloc) 2.04 KB
{
"name": "dependabot-updater-action",
"version": "0.0.0",
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/typescript-action.git"
},
"keywords": [
"actions",
"dependabot",
"dependencies"
],
"author": "GitHub",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.5.0",
"@actions/github": "^5.0.0",
"@octokit/webhooks-types": "^4.8.0",
"axios": "^0.23.0",
"commander": "^8.2.0",
"dockerode": "^3.3.1",
"npm": "^8.4.0",
"tar-stream": "^2.2.0"
},
"devDependencies": {
"@types/dockerode": "^3.2.6",
"@types/jest": "^27.0.2",
"@types/node": "^16.4.6",
"@types/node-forge": "^0.10.3",
"@types/tar-stream": "^2.2.2",
"@typescript-eslint/parser": "^4.33.0",
"@vercel/ncc": "^0.31.1",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-github": "^4.1.5",
"eslint-plugin-jest": "^25.2.4",
"husky": "^7.0.2",
"jest": "^27.3.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.0.7",
"ts-node": "^10.2.1",
"typescript": "^4.3.5",
"wait-port": "^0.2.9"
},
"lint-staged": {
"src/**/*.ts": [
"prettier --write",
"eslint --fix"
]
}
}