12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- {
- "name": "unstable-commands",
- "version": "1.0.0",
- "private": true,
- "description": "An action to retry commands if weird things happen.",
- "main": "lib/main.js",
- "scripts": {
- "build": "tsc",
- "format": "prettier --write '**/*.ts'",
- "format-check": "prettier --check '**/*.ts'",
- "lint": "eslint --fix src/**/*.ts",
- "lint-check": "eslint --fix-dry-run src/**/*.ts",
- "package": "ncc build --source-map --license licenses.txt",
- "test": "jest"
- },
- "repository": {
- "type": "git",
- "url": "git+https://github.com/TSRBerry/unstable-commands.git"
- },
- "keywords": [
- "actions",
- "node"
- ],
- "author": "TSRBerry",
- "license": "MIT",
- "dependencies": {
- "@actions/core": "^1.10.0",
- "@actions/exec": "^1.1.1",
- "@actions/io": "^1.1.3"
- },
- "devDependencies": {
- "@jest/globals": "^29.6.2",
- "@types/node": "^18.16.3",
- "@typescript-eslint/parser": "^5.59.2",
- "@vercel/ncc": "^0.36.1",
- "eslint": "^8.39.0",
- "eslint-plugin-github": "^4.7.0",
- "eslint-plugin-jest": "^27.2.1",
- "jest": "^29.5.0",
- "js-yaml": "^4.1.0",
- "prettier": "^2.8.8",
- "ts-jest": "^29.1.0",
- "typescript": "^5.0.4"
- }
- }
|