setup-java/package.json

52 lines
1.2 KiB
JSON
Raw Normal View History

2019-07-10 16:54:25 +02:00
{
"name": "setup-java",
2019-08-01 15:40:31 +02:00
"version": "1.0.0",
2019-07-10 16:54:25 +02:00
"private": true,
"description": "setup java action",
2019-11-25 16:04:57 +01:00
"main": "dist/index.js",
2019-07-10 16:54:25 +02:00
"scripts": {
2019-12-19 17:52:26 +01:00
"build": "ncc build src/setup-java.ts",
2019-07-10 16:54:25 +02:00
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
2019-12-19 17:52:26 +01:00
"prerelease": "npm run-script build",
"release": "git add -f dist/index.js",
2019-07-10 16:54:25 +02:00
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/setup-java.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "GitHub",
"license": "MIT",
"dependencies": {
2019-08-20 16:26:11 +02:00
"@actions/core": "^1.0.0",
"@actions/exec": "^1.0.0",
2020-02-06 21:16:41 +01:00
"@actions/http-client": "^1.0.6",
2019-08-20 16:26:11 +02:00
"@actions/io": "^1.0.0",
2020-02-06 21:16:41 +01:00
"@actions/tool-cache": "^1.3.1",
"semver": "^6.1.1"
2019-07-10 16:54:25 +02:00
},
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/node": "^12.0.4",
"@types/semver": "^6.0.0",
2019-11-25 16:04:57 +01:00
"@zeit/ncc": "^0.20.5",
2019-07-10 16:54:25 +02:00
"jest": "^24.8.0",
"jest-circus": "^24.7.1",
2019-11-25 16:12:17 +01:00
"prettier": "^1.19.1",
2019-07-10 16:54:25 +02:00
"ts-jest": "^24.0.2",
"typescript": "^3.5.1"
},
"husky": {
"skipCI": true,
"hooks": {
2019-11-25 16:04:57 +01:00
"pre-commit": "npm run build && npm run format"
2019-07-10 16:54:25 +02:00
}
}
}