UNPKG

1.39 kBJSONView Raw
1{
2 "name": "gitlog",
3 "version": "4.0.3",
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 },
14 "publishConfig": {
15 "registry": "http://registry.npmjs.org"
16 },
17 "repository": {
18 "type": "git",
19 "url": "git://github.com/domharrington/node-gitlog.git"
20 },
21 "keywords": [
22 "git",
23 "log",
24 "parser"
25 ],
26 "author": "Dom Harrington <domharrington@protonmail.com>",
27 "license": "BSD-3-Clause",
28 "engines": {
29 "node": ">= 10.x"
30 },
31 "devDependencies": {
32 "@auto-it/all-contributors": "^9.26.5",
33 "@auto-it/first-time-contributor": "^9.26.5",
34 "@types/debug": "^4.1.5",
35 "@types/jest": "^25.2.1",
36 "all-contributors-cli": "^6.14.1",
37 "auto": "^9.26.5",
38 "husky": "^4.2.3",
39 "lint-staged": "^10.1.2",
40 "prettier": "^2.0.4",
41 "tsdx": "^0.13.1",
42 "typescript": "^3.8.3"
43 },
44 "dependencies": {
45 "debug": "^4.1.1",
46 "tslib": "^1.11.1"
47 },
48 "husky": {
49 "hooks": {
50 "pre-commit": "lint-staged"
51 }
52 },
53 "lint-staged": {
54 "*.{js,css,md,ts,json}": "prettier --write"
55 },
56 "auto": {
57 "plugins": [
58 "npm",
59 "released",
60 "first-time-contributor",
61 "all-contributors"
62 ]
63 }
64}