forked from domharrington/node-gitlog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.36 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
{
"name": "gitlog",
"version": "4.0.0",
"description": "Git log parser for Node.JS",
"module": "dist/gitlog.esm.js",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint src test"
},
"publishConfig": {
"registry": "http://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "git://github.com/domharrington/node-gitlog.git"
},
"keywords": [
"git",
"log",
"parser"
],
"author": "Dom Harrington <[email protected]>",
"license": "BSD-3-Clause",
"engines": {
"node": ">= 10.x"
},
"devDependencies": {
"@auto-it/all-contributors": "^9.26.5",
"@auto-it/first-time-contributor": "^9.26.5",
"@types/debug": "^4.1.5",
"@types/jest": "^25.2.1",
"all-contributors-cli": "^6.14.1",
"auto": "^9.26.5",
"husky": "^4.2.3",
"lint-staged": "^10.1.2",
"prettier": "^2.0.4",
"tsdx": "^0.13.1",
"typescript": "^3.8.3"
},
"dependencies": {
"debug": "^4.1.1",
"tslib": "^1.11.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,md,ts,json}": "prettier --write"
},
"auto": {
"plugins": [
"npm",
"released",
"first-time-contributor",
"all-contributors"
]
}
}