-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.32 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": "boomper-github-app",
"version": "1.1.0",
"description": "A GitHub app that bumps version numbers in files whenever new releases are published to GitHub",
"author": "Tim Lucas (https://github.com/toolmantim)",
"license": "ISC",
"repository": "toolmantim/boomper",
"scripts": {
"dev": "nodemon --exec \"npm start\"",
"start": "probot run ./index.js",
"now-start": "PRIVATE_KEY=$(echo $PRIVATE_KEY_BASE64 | base64 -d) npm start",
"lint": "standard --fix",
"test": "jest && standard",
"test:watch": "jest --watch --notify --notifyMode=change --coverage",
"postversion": "npm run test && git push && git push --tags && npm publish && npm run deploy && npm run open-releases",
"open-releases": "open \"$(node -e 'console.log(`https://github.com/${require(\"./package.json\").repository}/releases`)')\"",
"deploy": "now && now alias"
},
"dependencies": {
"compare-versions": "3.6.0",
"probot": "10.8.0",
"request": "2.88.2"
},
"devDependencies": {
"jest": "26.4.2",
"nock": "13.0.4",
"nodemon": "2.0.4",
"smee-client": "1.2.2",
"standard": "14.3.4"
},
"engines": {
"node": ">= 14"
},
"standard": {
"env": [
"jest"
]
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"index.js",
"lib/**"
]
}
}