probot/package.json

139 lines
3.5 KiB
JSON
Raw Normal View History

2016-09-17 00:10:30 +08:00
{
2017-03-13 00:10:45 +08:00
"name": "probot",
2019-01-12 14:02:37 +08:00
"version": "0.0.0-development",
"description": "🤖 A framework for building GitHub Apps to automate and improve your workflow",
2017-03-13 00:10:45 +08:00
"repository": "https://github.com/probot/probot",
2017-11-21 11:13:18 +08:00
"main": "lib/index.js",
"types": "./lib/index.d.ts",
2017-03-12 05:58:36 +08:00
"bin": {
"probot": "./bin/probot.js"
2017-03-12 05:58:36 +08:00
},
2016-09-17 00:10:30 +08:00
"scripts": {
"build": "rimraf lib && tsc -p tsconfig.json",
"start": "node ./bin/probot run",
"lint": "tslint --project test",
"test": "tsc --noEmit -p test && jest --coverage && npm run lint && npm run doc-lint",
"doc-lint": "standard-markdown docs/",
"doc": "typedoc --options .typedoc.json",
"prepare": "npm run build"
2016-09-17 00:10:30 +08:00
},
"files": [
"lib",
"bin",
"static",
"views"
],
"jest": {
"setupFiles": [
"<rootDir>/test/setup.ts"
],
"coveragePathIgnorePatterns": [
"<rootDir>/lib/"
],
"moduleFileExtensions": [
"ts",
"js",
"json",
"node"
],
"preset": "ts-jest"
},
"keywords": [
"probot",
"github-apps",
"github",
"automation",
"robots",
"workflow"
],
"bugs": "https://github.com/probot/probot/issues",
"homepage": "https://probot.github.io",
2016-09-17 00:10:30 +08:00
"author": "Brandon Keepers",
"license": "ISC",
"dependencies": {
"@octokit/app": "^4.0.0",
"@octokit/graphql": "^4.2.0",
"@octokit/plugin-enterprise-compatibility": "^1.0.0",
"@octokit/plugin-retry": "^2.1.1",
2019-01-24 13:56:04 +08:00
"@octokit/plugin-throttling": "^2.3.0",
"@octokit/request": "^5.1.0",
"@octokit/rest": "^16.29.0",
"@octokit/webhooks": "^6.0.0",
"@types/supports-color": "^5.3.0",
2019-01-24 13:56:04 +08:00
"bottleneck": "^2.15.3",
2017-08-23 11:06:31 +08:00
"bunyan": "^1.8.12",
2017-03-20 00:51:22 +08:00
"bunyan-format": "^0.2.1",
2017-04-09 01:18:31 +08:00
"bunyan-sentry-stream": "^1.1.0",
2017-03-28 11:13:17 +08:00
"cache-manager": "^2.4.0",
"commander": "^4.0.0",
"deepmerge": "^4.1.0",
"dotenv": "~8.2.0",
"eventsource": "^1.0.7",
"express": "^4.16.2",
"express-async-errors": "^3.0.0",
2019-10-13 01:42:31 +08:00
"hbs": "^4.0.6",
2019-01-24 13:56:04 +08:00
"ioredis": "^4.5.1",
"is-base64": "1.0.0",
"js-yaml": "^3.13.1",
2017-11-20 13:11:33 +08:00
"jsonwebtoken": "^8.1.0",
"octokit-pagination-methods": "1.1.0",
"pkg-conf": "^3.0.0",
"promise-events": "^0.1.3",
Probot Support for GitHub App Manifests (#650) * Add button to setup GitHub app * Add app.yml * Add some comments to app.yml * Associate events with permissions * Allow configuring app with manifest * Hacky version of callback URL for configuring app * Remove manifest stuff for now * Return nil if private key is not found * Move setup stuff to a separate plugin * Revert changes to default plugin * Remove FIXME * Revert changes to default template * Use separate template for setup * Fix lint warnings * Convert test helper to typescript * Initial test for setup app * Require tests files to match `.test.(js|ts)` * Account for multiple protocols in x-forwarded-proto * Wrap pem in quotes * Collapse class into request method for now * run `refresh` after updating .env on Glitch * Extract update-dotenv to a node module * Create a smee url if one does not exist * Hacky version of serving up the manifest * WIP Manifest with code * add comments for plan + figure out port * using user-agent header for review lab * add success view to redirect to after installation * api is actually on github * start making post * fix quoting issue on POST * everything is off review lab and on dotcom * working version of app manifest flow * Start trying to write tests against setup * more refactor into thingerator; basic tests; write plans for other tests * merge better.. * ok atom conflict handling broke * hack the tests back together * pass the tests 👊🏼 * moar test * make it open in a new tab for Wil 💖 * make boolean work * clean up logic, move messgae, just return html url not response * clean up tests 👷🏾‍♀️ * rename Brandon's thingerator to manifest-creation
2018-09-27 03:22:11 +08:00
"qs": "^6.5.2",
"raven": "^2.4.2",
2017-08-23 11:06:31 +08:00
"resolve": "^1.4.0",
"semver": "^6.0.0",
"supports-color": "^7.0.0",
Probot Support for GitHub App Manifests (#650) * Add button to setup GitHub app * Add app.yml * Add some comments to app.yml * Associate events with permissions * Allow configuring app with manifest * Hacky version of callback URL for configuring app * Remove manifest stuff for now * Return nil if private key is not found * Move setup stuff to a separate plugin * Revert changes to default plugin * Remove FIXME * Revert changes to default template * Use separate template for setup * Fix lint warnings * Convert test helper to typescript * Initial test for setup app * Require tests files to match `.test.(js|ts)` * Account for multiple protocols in x-forwarded-proto * Wrap pem in quotes * Collapse class into request method for now * run `refresh` after updating .env on Glitch * Extract update-dotenv to a node module * Create a smee url if one does not exist * Hacky version of serving up the manifest * WIP Manifest with code * add comments for plan + figure out port * using user-agent header for review lab * add success view to redirect to after installation * api is actually on github * start making post * fix quoting issue on POST * everything is off review lab and on dotcom * working version of app manifest flow * Start trying to write tests against setup * more refactor into thingerator; basic tests; write plans for other tests * merge better.. * ok atom conflict handling broke * hack the tests back together * pass the tests 👊🏼 * moar test * make it open in a new tab for Wil 💖 * make boolean work * clean up logic, move messgae, just return html url not response * clean up tests 👷🏾‍♀️ * rename Brandon's thingerator to manifest-creation
2018-09-27 03:22:11 +08:00
"update-dotenv": "^1.1.0",
"uuid": "^3.2.1"
2016-09-17 00:10:30 +08:00
},
"devDependencies": {
"@types/bunyan": "^1.8.4",
"@types/bunyan-format": "^0.2.0",
"@types/cache-manager": "^2.10.0",
"@types/dotenv": "^8.2.0",
"@types/eventsource": "^1.1.0",
"@types/express": "^4.17.2",
"@types/ioredis": "^4.0.6",
"@types/jest": "^24.0.9",
"@types/js-yaml": "^3.10.1",
"@types/jsonwebtoken": "^8.3.0",
"@types/nock": "^11.1.0",
"@types/node": "^12.0.0",
Probot Support for GitHub App Manifests (#650) * Add button to setup GitHub app * Add app.yml * Add some comments to app.yml * Associate events with permissions * Allow configuring app with manifest * Hacky version of callback URL for configuring app * Remove manifest stuff for now * Return nil if private key is not found * Move setup stuff to a separate plugin * Revert changes to default plugin * Remove FIXME * Revert changes to default template * Use separate template for setup * Fix lint warnings * Convert test helper to typescript * Initial test for setup app * Require tests files to match `.test.(js|ts)` * Account for multiple protocols in x-forwarded-proto * Wrap pem in quotes * Collapse class into request method for now * run `refresh` after updating .env on Glitch * Extract update-dotenv to a node module * Create a smee url if one does not exist * Hacky version of serving up the manifest * WIP Manifest with code * add comments for plan + figure out port * using user-agent header for review lab * add success view to redirect to after installation * api is actually on github * start making post * fix quoting issue on POST * everything is off review lab and on dotcom * working version of app manifest flow * Start trying to write tests against setup * more refactor into thingerator; basic tests; write plans for other tests * merge better.. * ok atom conflict handling broke * hack the tests back together * pass the tests 👊🏼 * moar test * make it open in a new tab for Wil 💖 * make boolean work * clean up logic, move messgae, just return html url not response * clean up tests 👷🏾‍♀️ * rename Brandon's thingerator to manifest-creation
2018-09-27 03:22:11 +08:00
"@types/qs": "^6.5.1",
"@types/raven": "^2.1.5",
"@types/resolve": "^0.0.4",
"@types/semver": "^6.0.0",
"@types/supertest": "^2.0.4",
"@types/uuid": "^3.4.3",
"connect-sse": "^1.2.0",
"eslint": "^6.0.0",
"eslint-plugin-markdown": "^1.0.0-beta.8",
2019-03-04 05:12:55 +08:00
"jest": "^24.1.0",
2017-03-20 13:33:58 +08:00
"minami": "^1.1.1",
"nock": "^11.3.2",
"semantic-release": "^16.0.0-beta.24",
"smee-client": "^1.0.1",
"standard": "^14.0.2",
"standard-markdown": "^5.0.1",
"supertest": "^4.0.2",
"ts-jest": "^24.0.0",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.10.0",
"tslint-config-standard": "^8.0.0",
"typedoc": "^0.15.0",
"typescript": "^3.4.1"
2016-09-17 02:44:21 +08:00
},
2017-08-23 11:06:31 +08:00
"standard": {
"env": [
"jest"
],
"plugins": [
"markdown"
2016-10-09 13:29:05 +08:00
]
2016-09-17 23:53:42 +08:00
},
"engines": {
2017-06-10 07:04:38 +08:00
"node": ">=7.7"
2016-09-17 00:10:30 +08:00
}
}