-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
80 lines (80 loc) · 2.4 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
78
79
80
{
"name": "pr-log",
"version": "6.1.1",
"type": "module",
"description": "Changelog generator based on GitHub Pull Requests",
"bin": "target/build/source/bin/pr-log.js",
"files": [
"target/build/source/",
"!target/build/source/**/*.test.js",
"!target/build/source/**/*.d.ts",
"!target/build/source/**/*.map",
"LICENSE",
"README.md"
],
"scripts": {
"compile": "tsc --build",
"prettier": "prettier '**/*.(yml|json|yaml|md)'",
"eslint": "eslint . --max-warnings 0",
"lint": "npm run eslint && npm run prettier -- --check",
"lint:fix": "npm run eslint -- --fix && npm run prettier -- --write",
"test": "c8 npm run test:unit",
"pretest:unit": "npm run compile",
"test:unit": "ava"
},
"author": "Mathias Schreck <[email protected]>",
"license": "MIT",
"dependencies": {
"@octokit/rest": "21.0.2",
"@sindresorhus/is": "7.0.1",
"commander": "12.1.0",
"common-tags": "1.8.2",
"date-fns": "2.30.0",
"execa": "9.5.1",
"git-url-parse": "15.0.0",
"loglevel": "1.9.2",
"parse-github-repo-url": "1.4.1",
"prepend-file": "2.0.1",
"semver": "7.6.3",
"true-myth": "8.0.1"
},
"devDependencies": {
"@ava/typescript": "5.0.0",
"@enormora/eslint-config-ava": "0.0.12",
"@enormora/eslint-config-base": "0.0.11",
"@enormora/eslint-config-node": "0.0.10",
"@enormora/eslint-config-typescript": "0.0.11",
"@types/common-tags": "1.8.4",
"@types/git-url-parse": "9.0.3",
"@types/node": "22.8.2",
"@types/parse-github-repo-url": "1.4.2",
"@types/semver": "7.5.8",
"@types/sinon": "17.0.3",
"ava": "6.2.0",
"c8": "10.1.2",
"eslint": "8.57.1",
"fishery": "2.2.2",
"prettier": "3.3.3",
"sinon": "19.0.2",
"typescript": "5.6.3"
},
"repository": {
"type": "git",
"url": "https://github.com/lo1tuma/pr-log.git"
},
"keywords": [
"pr-log",
"changelog",
"changelog.md",
"github",
"history",
"history.md"
],
"contributors": [
"Alexander Schmidt <[email protected]>",
"Christian Rackerseder <[email protected]>"
],
"engines": {
"node": "^20"
}
}