Files
setup-ruby/package.json

42 lines
965 B
JSON
Raw Normal View History

2019-06-26 14:22:50 -04:00
{
2019-06-26 14:28:48 -04:00
"name": "setup-ruby",
2019-08-01 09:32:52 -04:00
"version": "1.0.0",
2019-06-26 14:22:50 -04:00
"private": true,
2019-06-26 14:28:48 -04:00
"description": "setup ruby action",
2019-07-15 11:40:40 -04:00
"main": "lib/setup-ruby.js",
2019-06-26 14:22:50 -04:00
"scripts": {
"build": "tsc && ncc build",
2019-06-26 14:22:50 -04:00
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"test": "jest",
"pre-checkin": "npm run format && npm run build && npm test"
2019-06-26 14:22:50 -04:00
},
"repository": {
"type": "git",
2019-06-26 14:28:48 -04:00
"url": "git+https://github.com/actions/setup-ruby.git"
2019-06-26 14:22:50 -04:00
},
"keywords": [
"actions",
2019-06-26 14:28:48 -04:00
"ruby",
2019-06-26 14:22:50 -04:00
"setup"
],
"author": "GitHub",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.2",
"@actions/tool-cache": "^1.3.1",
2019-06-26 14:22:50 -04:00
"semver": "^6.1.1"
},
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/node": "^12.0.4",
"@types/semver": "^6.0.0",
"@zeit/ncc": "^0.21.0",
2019-06-26 14:22:50 -04:00
"jest": "^24.8.0",
"jest-circus": "^24.7.1",
"prettier": "^1.17.1",
"ts-jest": "^24.0.2",
"typescript": "^3.5.1"
}
}