forked from probot/probot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
131 lines (131 loc) · 3.36 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "probot",
"version": "7.0.0-typescript.4",
"publishConfig": {
"tag": "next"
},
"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",
"start": "node ./bin/probot run",
"lint": "tslint --project .",
"test": "tsc --noEmit -p . && jest --coverage && npm run lint && 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",
"prepare": "npm run build"
},
"files": [
"lib",
"bin",
"static",
"views"
],
"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",
"<rootDir>/test/fixtures/",
"<rootDir>/test/plugins/helper.js"
],
"globals": {
"ts-jest": {
"skipBabel": true,
"enableTsDiagnostics": true
}
}
},
"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/rest": "^15.6.0",
"@octokit/webhooks": "^3.1.1",
"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.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.4.2",
"resolve": "^1.4.0",
"semver": "^5.5.0"
},
"devDependencies": {
"@types/bunyan": "^1.8.4",
"@types/bunyan-format": "^0.2.0",
"@types/cache-manager": "^1.2.6",
"@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.18.2",
"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.2.0",
"semantic-release": "^15.0.0",
"smee-client": "^1.0.1",
"standard": "^11.0.0",
"supertest": "^3.0.0",
"ts-jest": "^21.2.4",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.10.0",
"typescript": "^2.7.2"
},
"standard": {
"env": [
"jest"
],
"plugins": [
"markdown"
]
},
"engines": {
"node": ">=7.7"
}
}