Files
probot/package.json
Brandon Keepers 41ae301aa4 Install eslint-config-standard to fix error
I was seeing the following error locally and on Travis:
https://travis-ci.org/probot/probot/builds/270683575.

---

standard: Unexpected linter output:

Error: Failed to load plugin import: Cannot find module 'eslint-plugin-import'
Referenced from: /Users/bkeepers/projects/probot/probot/node_modules/standard/eslintrc.json
    at Function.Module._resolveFilename (module.js:485:15)
    at Function.resolve (internal/module.js:18:19)
    at Object.load (/Users/bkeepers/projects/probot/probot/node_modules/eslint/lib/config/plugins.js:134:29)
    at Array.forEach (native)
    at Object.loadAll (/Users/bkeepers/projects/probot/probot/node_modules/eslint/lib/config/plugins.js:162:21)
    at load (/Users/bkeepers/projects/probot/probot/node_modules/eslint/lib/config/config-file.js:541:21)
    at configExtends.reduceRight (/Users/bkeepers/projects/probot/probot/node_modules/eslint/lib/config/config-file.js:424:36)
    at Array.reduceRight (native)
    at applyExtends (/Users/bkeepers/projects/probot/probot/node_modules/eslint/lib/config/config-file.js:408:28)
    at Object.load (/Users/bkeepers/projects/probot/probot/node_modules/eslint/lib/config/config-file.js:566:22)
2017-08-31 23:26:57 -05:00

57 lines
1.3 KiB
JSON

{
"name": "probot",
"version": "0.10.0",
"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": "mocha && standard",
"doc": "jsdoc -c .jsdoc.json",
"postpublish": "script/publish-docs"
},
"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",
"express": "^4.15.4",
"github": "^10.1.0",
"github-app": "^3.0.0",
"github-webhook-handler": "github:rvagg/github-webhook-handler#v0.6.1",
"js-yaml": "^3.9.1",
"load-plugins": "^2.1.2",
"pkg-conf": "^2.0.0",
"promise-events": "^0.1.3",
"raven": "^2.1.2",
"resolve": "^1.4.0",
"semver": "^5.4.1"
},
"devDependencies": {
"eslint-plugin-standard": "^3.0.1",
"expect": "^1.20.2",
"jsdoc": "^3.5.4",
"jsdoc-strip-async-await": "^0.1.0",
"minami": "^1.1.1",
"mocha": "^3.5.0",
"standard": "^10.0.3",
"supertest": "^3.0.0"
},
"standard": {
"env": [
"mocha"
]
},
"engines": {
"node": ">=7.7"
}
}