UNPKG

1.39 kBJSONView Raw
1{
2 "name": "gitlog",
3 "version": "4.0.8",
4 "description": "Git log parser for Node.JS",
5 "module": "dist/gitlog.esm.js",
6 "main": "dist/index.js",
7 "typings": "dist/index.d.ts",
8 "scripts": {
9 "start": "tsdx watch",
10 "build": "tsdx build",
11 "test": "tsdx test",
12 "lint": "tsdx lint src test",
13 "format": "prettier --write ."
14 },
15 "repository": {
16 "type": "git",
17 "url": "git://github.com/domharrington/node-gitlog.git"
18 },
19 "keywords": [
20 "git",
21 "log",
22 "parser"
23 ],
24 "author": "Dom Harrington <domharrington@protonmail.com>",
25 "license": "BSD-3-Clause",
26 "engines": {
27 "node": ">= 10.x"
28 },
29 "devDependencies": {
30 "@auto-it/all-contributors": "^10.46.0",
31 "@auto-it/first-time-contributor": "^10.46.0",
32 "@auto-it/pr-body-labels": "^10.46.0",
33 "@types/debug": "^4.1.5",
34 "@types/jest": "^25.2.1",
35 "auto": "^10.46.0",
36 "husky": "^4.3.6",
37 "lint-staged": "^10.5.3",
38 "prettier": "^2.2.1",
39 "tsdx": "^0.13.3",
40 "typescript": "^5.0.4"
41 },
42 "dependencies": {
43 "debug": "^4.1.1",
44 "tslib": "^2.5.0"
45 },
46 "husky": {
47 "hooks": {
48 "pre-commit": "lint-staged"
49 }
50 },
51 "lint-staged": {
52 "*.{js,css,md,ts,json}": "npm run format"
53 },
54 "auto": {
55 "plugins": [
56 "npm",
57 "released",
58 "first-time-contributor",
59 "all-contributors",
60 "pr-body-labels"
61 ]
62 }
63}