wrapper-validation-action/package.json

47 lines
1.1 KiB
JSON
Raw Normal View History

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",
2020-01-05 11:04:24 +00:00
"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",
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": {
"@actions/core": "1.2.6",
"typed-rest-client": "1.8.4",
"unhomoglyph": "1.0.6"
2020-01-05 11:04:24 +00:00
},
"devDependencies": {
"@types/node": "12.12.62",
"@typescript-eslint/parser": "4.2.0",
2021-07-20 12:39:25 +00:00
"@vercel/ncc": "^0.29.0",
"eslint": "7.9.0",
"eslint-plugin-github": "4.1.1",
"eslint-plugin-jest": "24.0.2",
"jest": "^27.0.6",
"js-yaml": "3.14.0",
2021-05-14 08:35:46 +00:00
"nock": "^13.0.11",
"prettier": "2.1.2",
"ts-jest": "^27.0.3",
"typescript": "4.0.3"
2020-01-05 11:04:24 +00:00
}
}