setup-java/package.json

51 lines
1.1 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": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
2019-11-28 23:48:36 +01:00
"release": "ncc build lib/setup-java.js && 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",
"@actions/io": "^1.0.0",
"@actions/tool-cache": "^1.0.0",
"semver": "^6.1.1",
"typed-rest-client": "1.5.0"
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
}
}
}