forked from mirrors/probot
151 lines
4.0 KiB
JSON
151 lines
4.0 KiB
JSON
{
|
|
"name": "probot",
|
|
"version": "0.0.0-development",
|
|
"description": "🤖 A framework for building GitHub Apps to automate and improve your workflow",
|
|
"repository": "https://github.com/probot/probot",
|
|
"main": "lib/index.js",
|
|
"types": "./lib/index.d.ts",
|
|
"bin": {
|
|
"probot": "./bin/probot.js"
|
|
},
|
|
"scripts": {
|
|
"build": "rimraf lib && tsc -p tsconfig.json",
|
|
"lint": "prettier --check 'src/**/*.ts' 'test/**/*.ts' 'docs/*.md' *.md package.json tsconfig.json",
|
|
"lint:fix": "prettier --write 'src/**/*.ts' 'test/**/*.ts' 'docs/*.md' *.md package.json tsconfig.json",
|
|
"pretest": "tsc --noEmit -p test",
|
|
"test": "jest",
|
|
"posttest": "npm run lint",
|
|
"doc": "typedoc --options .typedoc.json"
|
|
},
|
|
"files": [
|
|
"lib",
|
|
"bin",
|
|
"static",
|
|
"views"
|
|
],
|
|
"keywords": [
|
|
"probot",
|
|
"github-apps",
|
|
"github",
|
|
"automation",
|
|
"robots",
|
|
"workflow"
|
|
],
|
|
"bugs": "https://github.com/probot/probot/issues",
|
|
"homepage": "https://probot.github.io",
|
|
"author": "Brandon Keepers",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"@octokit/auth-app": "^2.4.14",
|
|
"@octokit/auth-unauthenticated": "^1.0.0",
|
|
"@octokit/core": "^3.1.0",
|
|
"@octokit/graphql": "^4.2.0",
|
|
"@octokit/plugin-enterprise-compatibility": "^1.2.1",
|
|
"@octokit/plugin-paginate-rest": "^2.2.3",
|
|
"@octokit/plugin-rest-endpoint-methods": "^3.17.0",
|
|
"@octokit/plugin-retry": "^3.0.1",
|
|
"@octokit/plugin-throttling": "^3.3.0",
|
|
"@octokit/request": "^5.1.0",
|
|
"@octokit/types": "^5.0.1",
|
|
"@octokit/webhooks": "^7.11.0",
|
|
"@probot/pino": "^1.0.0",
|
|
"@types/express": "^4.17.2",
|
|
"@types/ioredis": "^4.0.6",
|
|
"@types/pino": "^6.3.0",
|
|
"@types/pino-http": "^5.0.4",
|
|
"@types/supports-color": "^5.3.0",
|
|
"bottleneck": "^2.15.3",
|
|
"commander": "^5.0.0",
|
|
"deepmerge": "^4.1.0",
|
|
"deprecation": "^2.3.1",
|
|
"dotenv": "~8.2.0",
|
|
"eventsource": "^1.0.7",
|
|
"express": "^4.16.2",
|
|
"express-async-errors": "^3.0.0",
|
|
"hbs": "^4.1.1",
|
|
"ioredis": "^4.5.1",
|
|
"is-base64": "^1.1.0",
|
|
"js-yaml": "^3.13.1",
|
|
"jsonwebtoken": "^8.1.0",
|
|
"lru-cache": "^6.0.0",
|
|
"octokit-pagination-methods": "1.1.0",
|
|
"pino": "^6.5.0",
|
|
"pino-http": "^5.2.0",
|
|
"pino-pretty": "^4.1.0",
|
|
"pkg-conf": "^3.0.0",
|
|
"raven": "^2.4.2",
|
|
"resolve": "^1.4.0",
|
|
"semver": "^7.0.0",
|
|
"supports-color": "^7.0.0",
|
|
"update-dotenv": "^1.1.0",
|
|
"update-notifier": "^4.0.0",
|
|
"uuid": "^7.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@sinonjs/fake-timers": "^6.0.1",
|
|
"@tsconfig/node10": "^1.0.3",
|
|
"@types/eventsource": "^1.1.0",
|
|
"@types/jest": "^25.1.3",
|
|
"@types/js-yaml": "^3.10.1",
|
|
"@types/jsonwebtoken": "^8.3.0",
|
|
"@types/node": "^14.0.6",
|
|
"@types/raven": "^2.1.5",
|
|
"@types/resolve": "^1.14.0",
|
|
"@types/semver": "^7.1.0",
|
|
"@types/supertest": "^2.0.4",
|
|
"@types/uuid": "^7.0.0",
|
|
"body-parser": "^1.19.0",
|
|
"connect-sse": "^1.2.0",
|
|
"execa": "^4.0.3",
|
|
"get-port": "^5.1.1",
|
|
"got": "^11.5.1",
|
|
"jest": "^26.1.0",
|
|
"json-server": "^0.16.1",
|
|
"nock": "^13.0.3",
|
|
"prettier": "^2.0.5",
|
|
"rimraf": "^3.0.2",
|
|
"semantic-release": "^17.0.0",
|
|
"semantic-release-plugin-update-version-in-files": "^1.1.0",
|
|
"smee-client": "^1.2.2",
|
|
"supertest": "^4.0.2",
|
|
"ts-jest": "^26.1.1",
|
|
"typedoc": "^0.17.0",
|
|
"typescript": "^3.9.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=10.21"
|
|
},
|
|
"jest": {
|
|
"testEnvironment": "node",
|
|
"setupFiles": [
|
|
"<rootDir>/test/setup.ts"
|
|
],
|
|
"coveragePathIgnorePatterns": [
|
|
"<rootDir>/lib/"
|
|
],
|
|
"moduleFileExtensions": [
|
|
"ts",
|
|
"js",
|
|
"json",
|
|
"node"
|
|
],
|
|
"preset": "ts-jest"
|
|
},
|
|
"release": {
|
|
"plugins": [
|
|
"@semantic-release/commit-analyzer",
|
|
"@semantic-release/release-notes-generator",
|
|
"@semantic-release/github",
|
|
"@semantic-release/npm",
|
|
[
|
|
"semantic-release-plugin-update-version-in-files",
|
|
{
|
|
"files": [
|
|
"lib/version.*"
|
|
]
|
|
}
|
|
]
|
|
]
|
|
}
|
|
}
|