packages-check-bot/package.json

53 lines
1.3 KiB
JSON
Raw Normal View History

2019-01-15 17:15:25 +00:00
{
"name": "packages-check-bot",
"version": "1.0.0",
"description": "checks changes to packages.json to ensure that URL schemes match intended pattern and that forks are referenced with a tag, instead of a branch.",
"author": "Pedro Pombeiro <pombeirp@users.noreply.github.com> (https://status.im)",
"license": "ISC",
"repository": "https://github.com/status-im/packages-check-bot.git",
"homepage": "https://github.com/status-im/packages-check-bot",
"bugs": "https://github.com/status-im/packages-check-bot/issues",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"dev": "nodemon",
"start": "probot run ./index.js",
"lint": "standard --fix",
"test": "jest && standard",
"test:watch": "jest --watch --notify --notifyMode=change --coverage"
},
"dependencies": {
2019-01-16 22:45:16 +00:00
"humanize-plus": "^1.8.2",
2019-01-15 17:15:25 +00:00
"probot": "^7.2.0"
},
"devDependencies": {
2019-01-16 18:46:20 +00:00
"eslint": "^5.12.0",
2019-01-15 17:15:25 +00:00
"jest": "^22.4.3",
"nock": "^10.0.0",
"nodemon": "^1.17.2",
"smee-client": "^1.0.2",
"standard": "^10.0.3"
},
"engines": {
"node": ">= 8.3.0"
},
"standard": {
"env": [
"jest"
]
},
"nodemonConfig": {
"exec": "npm start",
"watch": [
".env",
"."
]
},
"jest": {
"testEnvironment": "node"
}
}