2020-08-27 11:53:14 +08:00
|
|
|
{
|
|
|
|
|
"name": "typescript-action",
|
|
|
|
|
"version": "0.0.0",
|
|
|
|
|
"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",
|
|
|
|
|
"test": "jest",
|
|
|
|
|
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
|
|
|
|
|
},
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "git+https://github.com/actions/typescript-action.git"
|
|
|
|
|
},
|
|
|
|
|
"keywords": [
|
|
|
|
|
"actions",
|
|
|
|
|
"node",
|
|
|
|
|
"setup"
|
|
|
|
|
],
|
|
|
|
|
"author": "",
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"dependencies": {
|
2020-09-24 06:21:27 +00:00
|
|
|
"@actions/core": "^1.2.6",
|
2020-08-27 20:39:35 +08:00
|
|
|
"@actions/exec": "^1.0.4",
|
2020-11-16 07:05:38 +00:00
|
|
|
"@actions/tool-cache": "^1.6.1"
|
2020-08-27 11:53:14 +08:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2020-12-02 06:14:33 +00:00
|
|
|
"@types/jest": "^26.0.16",
|
2020-11-26 06:27:27 +00:00
|
|
|
"@types/node": "^14.14.10",
|
2020-12-08 06:16:42 +00:00
|
|
|
"@typescript-eslint/parser": "^4.9.1",
|
2020-11-09 07:53:34 +00:00
|
|
|
"@vercel/ncc": "^0.25.1",
|
2020-12-07 07:20:50 +00:00
|
|
|
"eslint": "^7.15.0",
|
2020-08-27 11:53:14 +08:00
|
|
|
"eslint-plugin-github": "^4.1.1",
|
2020-11-13 06:13:50 +00:00
|
|
|
"eslint-plugin-jest": "^24.1.3",
|
2020-08-27 11:53:14 +08:00
|
|
|
"jest": "^24.9.0",
|
2020-11-05 06:16:37 +00:00
|
|
|
"jest-circus": "^26.6.3",
|
2020-12-08 06:15:02 +00:00
|
|
|
"js-yaml": "^3.14.1",
|
2020-11-30 07:07:58 +00:00
|
|
|
"prettier": "2.2.1",
|
2020-08-27 11:53:14 +08:00
|
|
|
"ts-jest": "^24.3.0",
|
2020-11-19 22:12:58 -08:00
|
|
|
"typescript": "^4.1.2"
|
2020-08-27 11:53:14 +08:00
|
|
|
}
|
|
|
|
|
}
|