mirror of
https://github.com/actions/typescript-action.git
synced 2025-04-08 00:09:45 +00:00
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 16.3.3 to 16.10.4. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) --- updated-dependencies: - dependency-name: "@types/node" dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
44 lines
1.1 KiB
JSON
44 lines
1.1 KiB
JSON
{
|
|
"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 --license licenses.txt",
|
|
"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": {
|
|
"@actions/core": "^1.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^16.10.4",
|
|
"@typescript-eslint/parser": "^4.28.3",
|
|
"@vercel/ncc": "^0.29.0",
|
|
"eslint": "^7.31.0",
|
|
"eslint-plugin-github": "^4.1.1",
|
|
"eslint-plugin-jest": "^24.3.6",
|
|
"jest": "^27.0.6",
|
|
"js-yaml": "^4.1.0",
|
|
"prettier": "2.2.1",
|
|
"ts-jest": "^27.0.3",
|
|
"typescript": "^4.1.3"
|
|
}
|
|
}
|