-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 1.92 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": "@nblagoev/pull-release-notes",
"version": "1.2.6",
"description": "A command line utility to generate a PR changelog between two refs.",
"license": "MIT",
"author": {
"name": "Nikolay Blagoev"
},
"repository": {
"type": "git",
"url": "[email protected]:nblagoev/pull-release-notes.git"
},
"bugs": {
"url": "https://github.com/nblagoev/pull-release-notes/issues"
},
"homepage": "https://github.com/nblagoev/pull-release-notes#readme",
"keywords": [
"github",
"pull-request",
"changelog",
"release-notes"
],
"files": [
"lib"
],
"main": "./lib/releaseNotes",
"types": "./lib/releaseNotes",
"bin": {
"pull-release-notes": "./lib/main.js"
},
"scripts": {
"clean": "rimraf lib && rimraf coverage",
"lint": "eslint \"src/**/*.ts\"",
"format": "prettier --write \"{src,test}/**/*.ts\"",
"prepublishOnly": "yarn run build",
"prebuild": "yarn run clean && yarn run format && yarn run lint && echo Using TypeScript && tsc --version",
"build": "tsc --pretty",
"test": "jest",
"coverage": "jest --coverage",
"watch": "yarn run build -- --watch",
"watch:test": "jest --watch"
},
"dependencies": {
"@octokit/rest": "^18.0.0",
"moment": "^2.24.0",
"yargs": "^17.0.0"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^14.0.5",
"@types/yargs": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"codecov": "^3.6.1",
"eslint": "^7.2.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^26.0.1",
"prettier": "^2.0.4",
"rimraf": "^3.0.0",
"ts-jest": "^26.1.0",
"ts-node": "^10.0.0",
"typescript": "^4.0.2"
},
"engines": {
"node": ">=12.0.0"
},
"jest": {
"preset": "ts-jest",
"testMatch": [
"**/test/**/*.ts"
]
}
}