-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
46 lines (46 loc) · 1.07 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
{
"name": "probot-app-workflow",
"private": true,
"license": "MIT",
"scripts": {
"start": "node ./wrapped-probot-run.js",
"test": "echo 'no tests to run'",
"now-start": "PRIVATE_KEY=$(echo $PRIVATE_KEY | base64 -d) npm start"
},
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.16.2",
"just-safe-get": "^1.3.0",
"node-fetch": "^2.2.0",
"probot": "^9.2.15",
"probot-app-delete-merged-branch": "^1.0.2-0",
"probot-app-deploy": "^1.1.1-0",
"probot-app-pr-title": "^1.1.9"
},
"probot": {
"apps": [
"probot-app-delete-merged-branch",
"probot-app-deploy",
"probot-app-pr-title"
]
},
"devDependencies": {
"babel-jest": "^23.2.0",
"babel-preset-env": "^1.7.0",
"jest-cli": "^23.3.0",
"jest-environment-node": "23.4.0",
"smee-client": "^1.0.2"
},
"jest": {
"cache": false,
"testEnvironment": "node",
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"testRegex": "src/.*__tests__/.*.test.js$"
},
"volta": {
"node": "10.18.0",
"yarn": "1.21.1"
}
}