paths-filter/package.json

52 lines
1.4 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",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
2022-08-14 13:04:09 +01: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": {
2022-08-13 15:47:59 +01:00
"@actions/core": "^1.9.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.0.3",
"picomatch": "^2.3.1"
2020-05-20 17:03:08 +02:00
},
"devDependencies": {
2022-08-13 15:47:59 +01:00
"@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"
}
2020-05-20 17:03:08 +02:00
}