paths-filter/package.json

62 lines
1.7 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.",
2024-09-11 13:14:51 +12:00
"type": "module",
2020-05-20 17:03:08 +02:00
"scripts": {
2024-09-11 13:14:51 +12:00
"build": "pnpm run build:types && pnpm run build:bundle",
"build:bundle": "node ./esbuild.config.mjs",
"build:types": "tsc",
2020-05-20 17:03:08 +02:00
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
2024-09-11 13:03:47 +12:00
"lint": "eslint",
2024-09-11 12:33:39 +12:00
"test": "vitest",
2024-09-11 13:14:51 +12:00
"all": "pnpm run build && pnpm run lint && pnpm run format && pnpm test run"
2020-05-20 17:03:08 +02:00
},
"repository": {
"type": "git",
2024-09-11 13:14:51 +12:00
"url": "git+https://github.com/AurorNZ/paths-filter.git"
2020-05-20 17:03:08 +02:00
},
"keywords": [
"actions",
"node",
"setup"
],
"license": "MIT",
"dependencies": {
2024-09-11 13:29:11 +12:00
"@actions/core": "^1.10.1",
2023-04-10 08:50:02 -06:00
"@actions/exec": "^1.1.1",
2024-01-30 15:12:05 +13:00
"@actions/github": "^6.0.0",
"js-yaml": "^4.1.0",
2024-09-11 13:29:11 +12:00
"micromatch": "^4.0.8"
2020-05-20 17:03:08 +02:00
},
"devDependencies": {
2024-09-11 13:03:47 +12:00
"@eslint/compat": "^1.1.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.10.0",
"@octokit/webhooks-types": "^7.5.1",
2024-09-11 13:29:11 +12:00
"@tsconfig/node20": "^20.1.4",
2024-09-11 13:03:47 +12:00
"@types/eslint__js": "^8.42.3",
2024-01-30 15:12:05 +13:00
"@types/js-yaml": "^4.0.9",
2024-09-11 13:29:11 +12:00
"@types/micromatch": "^4.0.9",
2024-01-30 14:52:42 +13:00
"@types/node": "^20.0.0",
2024-09-11 13:03:47 +12:00
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
2024-09-11 13:14:51 +12:00
"chalk": "^5.3.0",
"esbuild": "^0.23.1",
2024-09-11 13:03:47 +12:00
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-github": "^5.0.1",
"prettier": "^3.3.3",
2024-09-11 13:29:11 +12:00
"typescript": "^5.6.2",
2024-09-11 13:03:47 +12:00
"typescript-eslint": "^8.5.0",
2024-09-11 12:33:39 +12:00
"vitest": "^2.0.5"
2024-09-11 12:06:33 +12:00
},
"volta": {
"node": "20.17.0",
"pnpm": "8.15.8"
}
2020-05-20 17:03:08 +02:00
}