{ "name": "paths-filter", "version": "1.0.0", "private": true, "description": "Execute your workflow steps only if relevant files are modified.", "main": "lib/main.js", "scripts": { "build": "tsc", "format": "prettier --write **/*.ts", "format-check": "prettier --check **/*.ts", "lint": "eslint src/**/*.ts", "pack": "ncc build", "test": "jest", "all": "npm run build && npm run format && npm run lint && npm run pack && npm test" }, "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/exec": "^1.1.1", "@actions/github": "^5.0.3", "picomatch": "^2.3.1" }, "devDependencies": { "@types/jest": "^28.1.6", "@types/js-yaml": "^4.0.5", "@types/node": "^18.7.3", "@types/picomatch": "^2.3.0", "@typescript-eslint/eslint-plugin": "^5.33.0", "@typescript-eslint/parser": "^5.33.0", "@vercel/ncc": "^0.34.0", "eslint": "^8.21.0", "eslint-plugin-github": "^4.3.7", "eslint-plugin-jest": "^26.8.2", "jest": "^28.1.3", "jest-circus": "^28.1.3", "js-yaml": "^4.1.0", "prettier": "^2.7.1", "ts-jest": "^28.0.7", "typescript": "^4.7.4" } }