actions-yarn/package.json
2023-03-23 23:13:58 +00:00

31 lines
844 B
JSON

{
"name": "@borales/actions-yarn",
"version": "4.2.0",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"all": "yarn build && yarn format && yarn lint && yarn package && yarn test"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/io": "^1.1.2"
},
"devDependencies": {
"@types/node": "^18.15.5",
"@typescript-eslint/parser": "^5.56.0",
"@vercel/ncc": "^0.36.1",
"eslint-plugin-github": "^4.7.0",
"eslint-plugin-jest": "^27.2.1",
"eslint": "^8.36.0",
"jest": "^29.5.0",
"prettier": "^2.8.6",
"typescript": "^5.0.2"
}
}