forked from release-drafter/release-drafter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.88 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "release-drafter-github-app",
"version": "5.2.0",
"description": "A GitHub app that bumps version numbers in readmes",
"author": "Tim Lucas <[email protected]> (https://github.com/toolmantim)",
"license": "ISC",
"repository": "https://github.com/toolmantim/release-drafter",
"scripts": {
"dev": "nodemon --exec \"npm start\"",
"start": "probot run ./index.js",
"now-start": "PRIVATE_KEY=$(echo $PRIVATE_KEY_BASE64 | base64 -d) npm start",
"test": "jest",
"test:watch": "jest --watch --notify --notifyMode=change --coverage",
"lint": "eslint '**/*.js'",
"prettier": "prettier --write **/*.{js,md,json}",
"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(`${require(\"./package.json\").repository}/releases`)')\"",
"deploy": "now && now alias"
},
"dependencies": {
"compare-versions": "3.5.1",
"escape-string-regexp": "2.0.0",
"lodash": "4.17.15",
"probot": "9.3.0",
"probot-config": "1.1.0",
"regex-parser": "2.2.10",
"request": "2.88.0",
"semver": "6.3.0"
},
"devDependencies": {
"eslint": "5.16.0",
"eslint-config-prettier": "6.0.0",
"eslint-plugin-prettier": "3.1.0",
"husky": "3.0.3",
"jest": "24.8.0",
"lint-staged": "9.2.1",
"nock": "10.0.6",
"nock-knock": "2.0.0",
"node-fetch": "2.6.0",
"nodemon": "1.19.1",
"prettier": "1.18.2",
"smee-client": "1.1.0"
},
"engines": {
"node": ">= 10.x"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"index.js",
"lib/**"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.{json,css,md}": [
"prettier --write",
"git add"
]
}
}