-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 963 Bytes
/
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
{
"name": "changelog",
"version": "1.0.0",
"description": "",
"author": "Michal Cichra <[email protected]>",
"license": "ISC",
"repository": "https://github.com/mikz/probot-changelog.git",
"scripts": {
"start": "probot run ./index.js",
"now-start": "PRIVATE_KEY=$(echo $PRIVATE_KEY | base64 -d) npm start",
"test": "jest",
"lint": "standard",
"ci": "npm run test -- --ci --testResultsProcessor=jest-junit"
},
"pre-commit": [
"lint"
],
"dependencies": {
"probot": "^10.9.1"
},
"now": {
"env": {
"NODE_ENV": "production",
"DISABLE_TUNNEL": "1",
"WEBHOOK_SECRET": "@webhook-secret",
"PRIVATE_KEY": "@private-key"
}
},
"devDependencies": {
"jest": "^26.5.2",
"jest-junit": "^3.3.0",
"smee-client": "^1.0.1",
"standard": "^10.0.3"
},
"engines": {
"node": ">= 8.3.0",
"npm": ">= 5.0.0"
},
"standard": {
"env": [
"jest"
]
}
}