-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
58 lines (58 loc) · 1.24 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
{
"name": "gitlog",
"version": "5.1.0",
"description": "Git log parser for Node.JS",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"start": "tsc --watch",
"build": "tsc",
"pretest": "npm run lint",
"test": "jest",
"lint": "prettier --check .",
"format": "prettier --write .",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git://github.com/domharrington/node-gitlog.git"
},
"keywords": [
"git",
"log",
"parser"
],
"author": "Dom Harrington <domharrington@protonmail.com>",
"license": "BSD-3-Clause",
"engines": {
"node": ">= 20.x"
},
"files": [
"dist"
],
"devDependencies": {
"@auto-it/all-contributors": "^10.46.0",
"@auto-it/first-time-contributor": "^10.46.0",
"@auto-it/pr-body-labels": "^10.46.0",
"@types/debug": "^4.1.5",
"@types/jest": "^25.2.1",
"auto": "^10.46.0",
"jest": "^29.7.0",
"prettier": "2.8.8",
"ts-jest": "^29.1.5",
"typescript": "^5.0.4"
},
"dependencies": {
"debug": "^4.1.1"
},
"auto": {
"plugins": [
"npm",
"released",
"first-time-contributor",
"all-contributors",
"pr-body-labels"
]
},
"type": "module"
}