-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
48 lines (48 loc) · 1.43 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
{
"name": "tap-release-github-app",
"version": "1.6.0",
"description": "A GitHub app that automatically update Homebrew taps when you publish new GitHub releases",
"author": "Tim Lucas (http://toolmantim.com)",
"license": "ISC",
"repository": "toolmantim/tap-release",
"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",
"simulate": "probot simulate release test/fixtures/release.json ./index.js",
"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.4.0",
"probot": "9.3.1",
"probot-config": "1.0.0",
"request": "2.88.0"
},
"devDependencies": {
"jest": "24.7.1",
"nock": "10.0.6",
"nodemon": "1.19.1",
"smee-client": "1.1.0",
"standard": "12.0.1"
},
"engines": {
"node": ">= 8.3.0"
},
"standard": {
"env": [
"jest"
]
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"index.js",
"lib/**"
]
}
}