62 lines
1.9 KiB
JSON
62 lines
1.9 KiB
JSON
{
|
|
"author": "Pedro Pombeiro <pombeirp@users.noreply.github.com> (https://status.im)",
|
|
"bugs": "https://github.com/status-im/packages-check-bot/issues",
|
|
"dependencies": {
|
|
"@types/humanize-plus": "^1.8.0",
|
|
"@types/nock": "^9.3.0",
|
|
"humanize-plus": "^1.8.2",
|
|
"nock": "^10.0.0",
|
|
"probot": "^7.2.0",
|
|
"toml": "^2.3.5"
|
|
},
|
|
"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.",
|
|
"devDependencies": {
|
|
"@types/jest": "^24.0.0",
|
|
"@types/node": "^10.12.18",
|
|
"eslint-plugin-typescript": "^0.12.0",
|
|
"jest": "^24.4.0",
|
|
"nodemon": "^1.18.9",
|
|
"smee-client": "^1.0.2",
|
|
"ts-jest": "^24.0.0",
|
|
"tslint": "^5.12.1",
|
|
"typescript": "^4.5.4",
|
|
"typescript-eslint-parser": "^18.0.0",
|
|
"typescript-tslint-plugin": "^0.2.1"
|
|
},
|
|
"engines": {
|
|
"node": ">= 8.16.0",
|
|
"yarn": ">= 1.13.x"
|
|
},
|
|
"homepage": "https://github.com/status-im/packages-check-bot",
|
|
"jest": {
|
|
"testEnvironment": "node"
|
|
},
|
|
"keywords": [
|
|
"probot",
|
|
"github",
|
|
"probot-app"
|
|
],
|
|
"license": "ISC",
|
|
"name": "packages-check-bot",
|
|
"nodemonConfig": {
|
|
"exec": "yarn start",
|
|
"watch": [
|
|
".env",
|
|
"./lib"
|
|
]
|
|
},
|
|
"repository": "https://github.com/status-im/packages-check-bot.git",
|
|
"scripts": {
|
|
"_start-dev": "./scripts/predebug.sh; yarn build && node --inspect ./node_modules/probot/bin/probot-run.js ./lib/index.js",
|
|
"build": "tsc -p tsconfig.json",
|
|
"dev": "./node_modules/nodemon/bin/nodemon.js",
|
|
"lint": "tslint -c tslint.json --fix 'src/**/*.ts' --fix 'test/**/*.ts'",
|
|
"postinstall": "yarn build",
|
|
"start": "probot run ./lib/index.js",
|
|
"test": "jest && tsc -p tsconfig.json",
|
|
"test:watch": "jest --watch --notify --notifyMode=change --coverage",
|
|
"logs": "ssh dokku.status.im tail -n 100 -f /var/log/docker/packages-check-bot.web.1/docker.log"
|
|
},
|
|
"version": "1.0.0"
|
|
}
|