mirror of
https://github.com/gradle/wrapper-validation-action
synced 2024-11-23 17:22:01 +00:00
b3d8242e39
Signed-off-by: Paul Merlin <paul@gradle.com>
47 lines
1.2 KiB
JSON
47 lines
1.2 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",
|
|
"pack": "ncc build",
|
|
"test": "jest",
|
|
"all": "npm run build && npm run format && npm run lint && npm run pack && npm test"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/actions/typescript-action.git"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"node",
|
|
"setup"
|
|
],
|
|
"author": "YourNameOrOrganization",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^1.2.3",
|
|
"typed-rest-client": "^1.7.3",
|
|
"unhomoglyph": "^1.0.5"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^25.2.1",
|
|
"@types/node": "^12.12.34",
|
|
"@typescript-eslint/parser": "^2.27.0",
|
|
"@zeit/ncc": "^0.22.1",
|
|
"eslint": "^6.8.0",
|
|
"eslint-plugin-github": "^3.4.1",
|
|
"eslint-plugin-jest": "^23.8.2",
|
|
"jest": "^25.2.7",
|
|
"jest-circus": "^25.2.7",
|
|
"js-yaml": "^3.13.1",
|
|
"prettier": "^2.0.4",
|
|
"ts-jest": "^25.3.1",
|
|
"typescript": "^3.8.3"
|
|
}
|
|
}
|