mise-action/package.json

48 lines
1.2 KiB
JSON
Raw Normal View History

2023-01-14 08:11:40 -06:00
{
"name": "typescript-action",
2023-03-06 09:38:55 -06:00
"version": "1.1.1",
2023-01-14 08:11:40 -06:00
"private": true,
"description": "TypeScript template action",
"main": "lib/main.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",
2023-01-14 08:44:01 -06:00
"all": "npm run build && npm run format && npm run lint && npm run package && npm test",
"prepare": "husky install"
2023-01-14 08:11:40 -06:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/typescript-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "",
"license": "MIT",
"dependencies": {
2023-01-14 08:36:43 -06:00
"@actions/core": "^1.10.0",
2023-01-14 08:46:55 -06:00
"@actions/exec": "^1.1.1"
2023-01-14 08:11:40 -06:00
},
"devDependencies": {
2023-03-25 15:19:50 -05:00
"@tsconfig/node16": "^1.0.3",
"@types/node": "^18.15.3",
"@typescript-eslint/parser": "^5.56.0",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.36.0",
"eslint-plugin-github": "^4.7.0",
2023-01-14 08:46:55 -06:00
"eslint-plugin-jest": "^27.2.1",
2023-03-25 15:19:50 -05:00
"husky": "^8.0.3",
"jest": "^29.5.0",
2023-01-14 08:11:40 -06:00
"js-yaml": "^4.1.0",
"prettier": "2.8.5",
2023-01-14 08:46:55 -06:00
"ts-jest": "^29.0.5",
2023-03-25 15:19:50 -05:00
"typescript": "^5.0.2"
2023-01-14 08:11:40 -06:00
}
}