mirror of
https://github.com/Borales/actions-yarn.git
synced 2026-03-03 23:02:17 +08:00
31 lines
844 B
JSON
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.14.1",
|
|
"@typescript-eslint/parser": "^5.52.0",
|
|
"@vercel/ncc": "^0.36.1",
|
|
"eslint-plugin-github": "^4.6.1",
|
|
"eslint-plugin-jest": "^27.2.1",
|
|
"eslint": "^8.34.0",
|
|
"jest": "^29.4.3",
|
|
"prettier": "^2.8.4",
|
|
"typescript": "^4.9.5"
|
|
}
|
|
}
|