paths-filter/package.json

55 lines
1.5 KiB
JSON
Raw Normal View History

2020-05-20 17:03:08 +02:00
{
"name": "paths-filter",
"version": "1.0.0",
2020-05-20 17:03:08 +02:00
"private": true,
"description": "Execute your workflow steps only if relevant files are modified.",
2020-05-20 17:03:08 +02:00
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"tscheck": "tsc --noEmit",
2020-05-20 17:03:08 +02:00
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
2024-01-30 15:15:04 +13:00
"pack": "ncc build -m",
2020-05-20 17:03:08 +02:00
"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": {
2023-04-10 08:50:02 -06:00
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
2024-01-30 15:12:05 +13:00
"@actions/github": "^6.0.0",
"js-yaml": "^4.1.0",
"micromatch": "^4.0.5"
2020-05-20 17:03:08 +02:00
},
"devDependencies": {
2024-01-30 15:12:05 +13:00
"@octokit/webhooks-types": "^7.3.1",
2024-01-30 15:15:04 +13:00
"@tsconfig/node20": "^20.1.2",
2024-01-30 15:12:05 +13:00
"@types/jest": "^29.5.11",
"@types/js-yaml": "^4.0.9",
"@types/micromatch": "^4.0.2",
2024-01-30 14:52:42 +13:00
"@types/node": "^20.0.0",
2024-01-30 15:12:05 +13:00
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.56.0",
"eslint-plugin-github": "^4.10.1",
"eslint-plugin-jest": "^27.6.3",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"prettier": "^3.2.4",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
}
2020-05-20 17:03:08 +02:00
}