Files
labeler/package.json
T

45 lines
1.0 KiB
JSON
Raw Permalink Normal View History

2019-03-29 15:21:48 -07:00
{
2019-08-08 13:07:40 -04:00
"name": "labeler",
2020-03-05 12:57:26 -05:00
"version": "3.0.0",
2019-08-08 13:07:40 -04:00
"description": "Labels pull requests by files altered",
"main": "lib/main.js",
2019-08-08 13:07:40 -04:00
"scripts": {
2020-05-12 16:00:28 -04:00
"build": "tsc && ncc build lib/main.js",
2019-08-08 13:07:40 -04:00
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/labeler.git"
},
"keywords": [
2020-03-05 12:57:26 -05:00
"github",
2019-08-08 13:07:40 -04:00
"actions",
2020-03-05 12:57:26 -05:00
"label",
"labeler"
2019-08-08 13:07:40 -04:00
],
"author": "GitHub",
2019-03-29 15:21:48 -07:00
"license": "MIT",
"dependencies": {
2020-05-12 14:08:27 -04:00
"@actions/core": "^1.2.4",
2020-05-08 17:07:38 -04:00
"@actions/github": "^2.2.0",
2019-08-08 13:07:40 -04:00
"js-yaml": "^3.13.1",
"minimatch": "^3.0.4",
"semver": "^6.1.1"
},
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/node": "^12.0.4",
"@types/semver": "^6.0.0",
"@types/minimatch": "^3.0.0",
"@types/js-yaml": "^3.12.1",
2020-03-05 12:57:26 -05:00
"@zeit/ncc": "^0.21.1",
2019-08-08 13:07:40 -04:00
"jest": "^24.8.0",
"jest-circus": "^24.7.1",
"prettier": "^1.17.1",
"ts-jest": "^24.0.2",
"typescript": "^3.5.1"
2019-03-29 15:21:48 -07:00
}
}