Files
probot/package.json
Jason Etcovitch 5d29945dd2 feat: /probot homepage (#279)
* Add /probot route with tests

* Add index route, write tests

* Remove unused arg

* Pass tests

* Tweak HTML string and pkg require

* Add static directory

* Design welcome page

* Rename to probot.html

* Implement EJS

* Remove duplicate load

* Extract default homepage into plugin

* Fix issue after merge conflict

* Refactor app loading

* Remove autoloading of plugings

BREAKING CHANGE: `probot run` without any arguments will no longer autoload apps named `probot-*`.

* Move setup

* Look for `apps` key instead of `plugins`

* Update simulate command

* Simplify resolver

* Remove unused routes variable

* Move views to default path

* Call probot.setup to properly initialize default apps

* Simplify package loading

* Specify extension

* Add links to docs/slack

* Remove stats link

* Add helper to jest ignore

* Fix ejs views error

* Move a require to top of file

* Remove unnecessary (and breaking) test
2017-10-17 09:35:58 -04:00

75 lines
1.9 KiB
JSON

{
"name": "probot",
"version": "0.0.0-development",
"description": "a trainable robot that responds to activity on GitHub",
"repository": "https://github.com/probot/probot",
"main": "index.js",
"bin": {
"probot": "./bin/probot.js"
},
"scripts": {
"start": "node ./bin/probot run",
"test": "jest && standard && npm run doc-lint",
"doc-lint": "standard docs/**/*.md",
"doc": "jsdoc -c .jsdoc.json",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"postsemantic-release": "script/publish-docs"
},
"jest": {
"testMatch": [ "**/test/**/*.js?(x)", "**/?(*.)(spec|test).js?(x)" ],
"modulePathIgnorePatterns": [
"<rootDir>/test/fixtures/",
"<rootDir>/test/setup.js",
"<rootDir>/test/plugins/helper.js"
],
"setupFiles": [
"<rootDir>/test/setup.js"
]
},
"author": "Brandon Keepers",
"license": "ISC",
"dependencies": {
"bottleneck": "^1.16.0",
"bunyan": "^1.8.12",
"bunyan-format": "^0.2.1",
"bunyan-sentry-stream": "^1.1.0",
"cache-manager": "^2.4.0",
"commander": "^2.11.0",
"dotenv": "~4.0.0",
"ejs": "^2.5.7",
"express": "^4.15.4",
"github": "^10.1.0",
"github-app": "^3.2.0",
"github-webhook-handler": "github:rvagg/github-webhook-handler#v0.6.1",
"jest": "^21.2.1",
"js-yaml": "^3.9.1",
"pkg-conf": "^2.0.0",
"promise-events": "^0.1.3",
"raven": "^2.1.2",
"resolve": "^1.4.0",
"semver": "^5.4.1"
},
"devDependencies": {
"eslint": "^4.6.1",
"eslint-plugin-markdown": "^1.0.0-beta.6",
"jsdoc": "^3.5.5",
"jsdoc-strip-async-await": "^0.1.0",
"minami": "^1.1.1",
"nock": "^9.0.19",
"semantic-release": "^8.0.3",
"standard": "^10.0.3",
"supertest": "^3.0.0"
},
"standard": {
"env": [
"jest"
],
"plugins": [
"markdown"
]
},
"engines": {
"node": ">=7.7"
}
}