Files
probot/package.json
2018-03-15 17:12:33 -05:00

111 lines
2.8 KiB
JSON

{
"name": "probot",
"version": "7.0.0-typescript.1",
"publishConfig": {
"tag": "next"
},
"description": "a trainable robot that responds to activity on GitHub.",
"repository": "https://github.com/probot/probot",
"main": "lib/index.js",
"bin": {
"probot": "./bin/probot.js"
},
"scripts": {
"build": "rimraf lib && tsc -p tsconfig.json",
"start": "node ./bin/probot run",
"test": "jest --coverage --forceExit && 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",
"prepublish": "npm run build"
},
"jest": {
"setupFiles": [
"<rootDir>/test/setup.js"
],
"coveragePathIgnorePatterns": [
"<rootDir>/lib/"
],
"moduleFileExtensions": [
"ts",
"js",
"json",
"node"
],
"transform": {
".+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"<rootDir>/test/*.(ts|js)"
],
"testPathIgnorePatterns": [
"<rootDir>/test/setup.js"
]
},
"author": "Brandon Keepers",
"license": "ISC",
"dependencies": {
"@octokit/rest": "15.1.7",
"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": "~5.0.0",
"express": "^4.16.2",
"express-async-errors": "2.1.1",
"github-webhook-handler": "^0.7.0",
"hbs": "^4.0.1",
"js-yaml": "^3.9.1",
"jsonwebtoken": "^8.1.0",
"pkg-conf": "^2.0.0",
"promise-events": "^0.1.3",
"raven": "^2.1.2",
"resolve": "^1.4.0",
"semver": "^5.4.1"
},
"devDependencies": {
"@types/bunyan": "^1.8.4",
"@types/bunyan-format": "^0.2.0",
"@types/cache-manager": "^1.2.5",
"@types/dotenv": "^4.0.2",
"@types/express": "^4.0.39",
"@types/jest": "^21.1.8",
"@types/js-yaml": "^3.10.1",
"@types/jsonwebtoken": "^7.2.5",
"@types/nock": "^9.1.0",
"@types/node": "^8.5.1",
"@types/raven": "^2.1.5",
"@types/resolve": "^0.0.4",
"@types/semver": "^5.4.0",
"@types/supertest": "^2.0.4",
"connect-sse": "^1.2.0",
"eslint": "^4.6.1",
"eslint-plugin-markdown": "^1.0.0-beta.7",
"jest": "^22.0.3",
"jsdoc": "^3.5.5",
"jsdoc-strip-async-await": "^0.1.0",
"minami": "^1.1.1",
"nock": "^9.0.19",
"semantic-release": "^12.2.2",
"smee-client": "^1.0.1",
"standard": "^11.0.0",
"supertest": "^3.0.0",
"ts-jest": "^21.2.4",
"typescript": "^2.7.2"
},
"standard": {
"env": [
"jest"
],
"plugins": [
"markdown"
]
},
"engines": {
"node": ">=7.7"
}
}