Files
delete-package-versions/package.json

49 lines
1.3 KiB
JSON
Raw Permalink Normal View History

2020-01-29 10:13:06 -05:00
{
"name": "typescript-action",
"version": "0.0.0",
"private": true,
"description": "TypeScript template action",
"main": "lib/main.js",
"scripts": {
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
2021-12-23 17:41:07 +00:00
"lint": "eslint src/**/*.ts --fix",
"lint-check": "eslint src/**/*.ts",
2020-01-29 10:13:06 -05:00
"test": "jest",
2021-12-23 17:41:07 +00:00
"build": "npm run format-check && npm run lint-check && npm run test && tsc",
"pack": "rm -rf ./lib ./dist && npm run build && ncc build"
2020-01-29 10:13:06 -05:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/typescript-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "YourNameOrOrganization",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/github": "^2.1.1",
2022-12-28 16:33:42 +05:30
"@octokit/rest": "^19.0.5",
"rxjs": "^6.5.4"
2020-01-29 10:13:06 -05:00
},
"devDependencies": {
2022-12-30 12:55:09 +00:00
"@types/jest": "^27.5.2",
"@types/node": "^18.11.18",
"@typescript-eslint/parser": "^5.47.1",
"@vercel/ncc": "^0.36.0",
"eslint": "^8.30.0",
"eslint-plugin-github": "^4.6.0",
"eslint-plugin-jest": "^27.1.7",
"jest": "^29.3.1",
"jest-circus": "^29.3.1",
"js-yaml": "^4.1.0",
2022-12-30 05:12:10 +00:00
"msw": "^0.49.2",
2022-12-30 12:55:09 +00:00
"prettier": "^2.8.1",
"ts-jest": "^29.0.3"
2020-01-29 10:13:06 -05:00
}
}