mirror of
https://github.com/dorny/paths-filter.git
synced 2024-11-12 08:38:35 +00:00
54 lines
1.4 KiB
JSON
54 lines
1.4 KiB
JSON
{
|
|
"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.2.4",
|
|
"@actions/exec": "^1.1.1",
|
|
"@actions/github": "^2.2.0",
|
|
"@octokit/webhooks": "^7.6.2",
|
|
"picomatch": "^2.2.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^27.4.0",
|
|
"@types/js-yaml": "^3.12.4",
|
|
"@types/minimatch": "^3.0.3",
|
|
"@types/node": "^14.0.5",
|
|
"@types/picomatch": "^2.2.1",
|
|
"@typescript-eslint/eslint-plugin": "^5.10.2",
|
|
"@typescript-eslint/parser": "^5.10.2",
|
|
"@vercel/ncc": "^0.33.1",
|
|
"eslint": "^8.17.0",
|
|
"eslint-plugin-github": "^4.3.6",
|
|
"eslint-plugin-jest": "^22.21.0",
|
|
"jest": "^27.4.7",
|
|
"jest-circus": "^27.4.6",
|
|
"js-yaml": "^3.14.0",
|
|
"prettier": "^2.0.5",
|
|
"ts-jest": "^27.1.3",
|
|
"typescript": "^3.9.3"
|
|
}
|
|
}
|