2020-01-05 11:04:24 +00:00
|
|
|
{
|
2021-07-20 12:52:04 +00:00
|
|
|
"name": "wrapper-validation-action",
|
2020-01-05 11:04:24 +00:00
|
|
|
"version": "0.0.0",
|
|
|
|
"private": true,
|
2021-07-20 12:52:04 +00:00
|
|
|
"description": "Gradle Wrapper Validation Action",
|
2024-01-31 21:19:32 +00:00
|
|
|
"main": "src/main.ts",
|
2020-01-05 11:04:24 +00:00
|
|
|
"scripts": {
|
|
|
|
"format": "prettier --write **/*.ts",
|
|
|
|
"format-check": "prettier --check **/*.ts",
|
|
|
|
"lint": "eslint src/**/*.ts",
|
2024-01-31 21:19:32 +00:00
|
|
|
"check": "npm run format && npm run lint",
|
|
|
|
"compile": "ncc build",
|
2020-01-05 11:04:24 +00:00
|
|
|
"test": "jest",
|
2024-01-31 21:19:32 +00:00
|
|
|
"build": "npm run check && npm run compile",
|
|
|
|
"all": "npm run build && npm test"
|
2020-01-05 11:04:24 +00:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2021-07-20 12:52:04 +00:00
|
|
|
"url": "git+https://github.com/gradle/wrapper-validation-action.git"
|
2020-01-05 11:04:24 +00:00
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"actions",
|
|
|
|
"node",
|
|
|
|
"setup"
|
|
|
|
],
|
2021-07-20 12:52:04 +00:00
|
|
|
"author": "Gradle Inc.",
|
2020-01-05 11:04:24 +00:00
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
2024-01-26 13:12:48 +00:00
|
|
|
"@actions/core": "1.10.1",
|
2023-07-21 18:23:25 +00:00
|
|
|
"typed-rest-client": "1.8.11",
|
2020-09-22 16:02:50 +00:00
|
|
|
"unhomoglyph": "1.0.6"
|
2020-01-05 11:04:24 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-07-21 18:46:30 +00:00
|
|
|
"@types/node": "16.18.38",
|
2024-01-29 20:43:01 +00:00
|
|
|
"@typescript-eslint/parser": "6.20.0",
|
|
|
|
"@vercel/ncc": "0.38.1",
|
|
|
|
"eslint": "8.56.0",
|
|
|
|
"eslint-plugin-github": "4.10.1",
|
|
|
|
"eslint-plugin-jest": "27.6.3",
|
|
|
|
"eslint-plugin-prettier": "5.1.3",
|
2023-02-21 03:10:55 +00:00
|
|
|
"glob-parent": "6.0.2",
|
2024-01-29 20:43:01 +00:00
|
|
|
"jest": "29.7.0",
|
2021-07-23 13:33:33 +00:00
|
|
|
"js-yaml": "4.1.0",
|
2024-01-29 20:43:01 +00:00
|
|
|
"nock": "13.5.1",
|
|
|
|
"prettier": "3.2.4",
|
|
|
|
"ts-jest": "29.1.2",
|
|
|
|
"typescript": "5.3.3"
|
2020-01-05 11:04:24 +00:00
|
|
|
}
|
|
|
|
}
|