mirror of
https://github.com/zhigang1992/pr-auto-labeler.git
synced 2026-01-12 08:14:29 +08:00
51 lines
1.2 KiB
JSON
51 lines
1.2 KiB
JSON
{
|
|
"name": "pr-auto-labeler",
|
|
"version": "1.0.0",
|
|
"description": "Automatically Label PR",
|
|
"author": "Kyle Fang <zhigang1992@gmail.com>",
|
|
"license": "ISC",
|
|
"repository": "https://github.com/zhigang1992/pr-labeler.git",
|
|
"homepage": "https://github.com/zhigang1992/pr-labeler",
|
|
"bugs": "https://github.com/zhigang1992/pr-labeler/issues",
|
|
"keywords": [
|
|
"probot",
|
|
"github",
|
|
"probot-app"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.json",
|
|
"dev": "nodemon --exec \"npm start\"",
|
|
"start": "probot run ./lib/index.js",
|
|
"lint": "standard **/*.ts --fix",
|
|
"test": "jest && standard **/*.ts",
|
|
"test:watch": "jest --watch --notify --notifyMode=change --coverage"
|
|
},
|
|
"dependencies": {
|
|
"probot": "^7.0.0",
|
|
"probot-config": "^0.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^23.1.5",
|
|
"@types/node": "^10.5.2",
|
|
"eslint-plugin-typescript": "^0.12.0",
|
|
"jest": "^23.4.0",
|
|
"nodemon": "^1.17.2",
|
|
"smee-client": "^1.0.2",
|
|
"standard": "^10.0.3",
|
|
"ts-jest": "^23.0.0",
|
|
"typescript": "3.1.3"
|
|
},
|
|
"engines": {
|
|
"node": ">= 8.3.0"
|
|
},
|
|
"standard": {
|
|
"parser": "typescript-eslint-parser",
|
|
"env": [
|
|
"jest"
|
|
],
|
|
"plugins": [
|
|
"typescript"
|
|
]
|
|
}
|
|
}
|