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