forked from fusionjs/probot-app-workflow
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.14 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": "baseui-probot-app-workflow",
"private": true,
"license": "MIT",
"scripts": {
"start": "probot run",
"test": "jest",
"now-start": "PRIVATE_KEY=$(echo $PRIVATE_KEY | base64 -d) npm start"
},
"dependencies": {
"node-fetch": "^2.2.0",
"probot": "7.1.1",
"probot-app-delete-merged-branch": "^1.0.1",
"probot-app-label-release-pr": "1.0.4",
"probot-app-license": "1.0.2",
"probot-app-merge-pr": "1.0.3",
"probot-app-migrations": "1.0.5",
"probot-app-pr-label": "1.2.0",
"probot-app-pr-title": "^1.1.5"
},
"probot": {
"apps": [
"probot-app-delete-merged-branch",
"probot-app-label-release-pr",
"probot-app-license",
"probot-app-merge-pr",
"probot-app-migrations",
"probot-app-pr-label"
]
},
"devDependencies": {
"babel-jest": "^23.6.0",
"babel-preset-env": "^1.7.0",
"jest-cli": "^23.6.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$"
}
}