Files
add-to-project/package.json
Matthew Costabile 973ebb68ca update deps
2023-07-24 14:49:21 +00:00

56 lines
1.6 KiB
JSON

{
"name": "@actions/add-to-project",
"description": "Automatically adds issues and PRs to GitHub projects",
"version": "0.0.0",
"author": "GitHub and contributors",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1"
},
"engines": {
"node": ">=16.0.0 <20.0.0",
"npm": ">= 8.0.0"
},
"devDependencies": {
"@github/prettier-config": "^0.0.6",
"@types/jest": "^29.5.3",
"@types/node": "16.18.39",
"@typescript-eslint/parser": "^6.1.0",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@vercel/ncc": "^0.36.1",
"concurrently": "^8.2.0",
"eslint": "^8.45.0",
"eslint-plugin-github": "^4.9.2",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.6.1",
"prettier": "3.0.0",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"keywords": [
"actions",
"node",
"setup"
],
"license": "MIT",
"main": "lib/main.js",
"prettier": "@github/prettier-config",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/actions/add-to-project.git"
},
"scripts": {
"build": "npm run fix:format && npm run check && npm run build:compile && npm run build:package",
"build:compile": "tsc",
"build:package": "ncc build --source-map --license licenses.txt",
"check": "concurrently -n check: -c red,green,blue -g npm:check:*",
"check:build": "tsc --noEmit",
"check:format": "prettier --check .",
"check:lint": "eslint .",
"fix:format": "prettier --write .",
"test": "jest"
}
}