Files
pr-title/package.json
2018-10-21 20:34:08 +08:00

51 lines
1.2 KiB
JSON

{
"name": "pr-title",
"version": "1.0.0",
"description": "Check PR title format",
"author": "Kyle Fang <zhigang1992@gmail.com>",
"license": "ISC",
"repository": "https://github.com/zhigang1992/pr-title.git",
"homepage": "https://github.com/zhigang1992/pr-title",
"bugs": "https://github.com/zhigang1992/pr-title/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"
]
}
}