forked from release-drafter/release-drafter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.3 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
76
77
{
"name": "release-drafter-github-app",
"version": "5.15.0",
"description": "A GitHub app that draft releases based on pull-request labels",
"author": "Tim Lucas <[email protected]> (https://github.com/toolmantim)",
"license": "ISC",
"repository": "https://github.com/toolmantim/release-drafter",
"scripts": {
"build": "ncc build action.js",
"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 bin/*.js lib/*.js action.js index.js test/**/*.js",
"prettier": "prettier --write **/*.{js,md,json,yml,yaml}",
"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.6",
"@hapi/joi": "15.1.1",
"@probot/adapter-github-actions": "^3.0.1",
"cli-table3": "0.6.0",
"compare-versions": "3.6.0",
"escape-string-regexp": "4.0.0",
"ignore": "5.1.8",
"lodash": "4.17.21",
"probot": "11.1.0",
"regex-parser": "2.2.11",
"request": "2.88.2",
"semver": "7.3.4"
},
"devDependencies": {
"@types/hapi__joi": "^15.0.4",
"@vercel/ncc": "0.28.4",
"eslint": "7.22.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-prettier": "3.3.1",
"husky": "4.3.8",
"jest": "26.6.3",
"joi-to-json-schema": "^5.1.0",
"lint-staged": "10.5.4",
"mocked-env": "^1.3.2",
"nock": "13.0.11",
"nock-knock": "2.0.0",
"node-fetch": "2.6.1",
"nodemon": "2.0.7",
"prettier": "2.2.1",
"smee-client": "1.2.2"
},
"engines": {
"node": ">= 10.x"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"index.js",
"lib/**"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
],
"*.{json,css,md}": [
"prettier --write"
]
}
}