-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 2.15 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
70
71
72
73
74
75
{
"name": "release-drafter-github-app",
"version": "5.3.1",
"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",
"test": "jest",
"test:watch": "jest --watch --notify --notifyMode=change --coverage",
"generate-schema": "node ./bin/generate-schema.js print",
"generate-fixtures": "node ./bin/generate-fixtures.js",
"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": "git push -f heroku \"$(node -e 'console.log(`v${require(\"./package.json\").version}`)')\":master"
},
"dependencies": {
"@actions/core": "^1.2.0",
"@hapi/joi": "15.1.1",
"cli-table3": "^0.5.1",
"compare-versions": "3.6.0",
"escape-string-regexp": "2.0.0",
"lodash": "4.17.15",
"probot": "9.10.2",
"regex-parser": "2.2.10",
"request": "2.88.2",
"semver": "7.1.3"
},
"devDependencies": {
"@types/hapi__joi": "^15.0.4",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-prettier": "3.1.2",
"husky": "4.2.3",
"jest": "25.1.0",
"joi-to-json-schema": "^5.1.0",
"lint-staged": "10.0.8",
"mocked-env": "^1.3.2",
"nock": "12.0.3",
"nock-knock": "2.0.0",
"node-fetch": "2.6.0",
"nodemon": "2.0.2",
"prettier": "1.19.1",
"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"
]
}
}