-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
93 lines (93 loc) · 2.27 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
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "git-commits-since",
"description": "Get all commits since given period of time or by default from latest git semver tag. Understands and follows both SemVer and the Conventional Commits specification.",
"license": "Apache-2.0",
"licenseStart": "2018",
"scripts": {
"docs": "docks --outfile .verb.md && verb",
"lint": "eslint '**/*.js' --cache --fix --quiet --format codeframe",
"test-only": "asia -r esm",
"test": "nyc asia",
"precommit": "yarn run lint && yarn run test-only",
"commit": "yarn dry",
"dry": "git add -A && git status --porcelain && gitcommit",
"release": "new-release"
},
"engines": {
"node": "^8.10.0 || >=10.13.0"
},
"resolutions": {
"esm": "^3.2.0"
},
"dependencies": {
"@tunnckocore/git-semver-tags": "0.2.0",
"esm": "^3.2.0",
"git-raw-commits": "2.0.0"
},
"devDependencies": {
"@tunnckocore/config": "^1.0.2",
"asia": "^0.19.7",
"dedent": "^0.7.0",
"fs-extra": "^7.0.0",
"parse-commit-message": "3.2.3",
"simple-git": "^1.107.0"
},
"files": [
"src",
"index.js"
],
"main": "index.js",
"module": "src/index.js",
"typings": "src/index.d.ts",
"version": "1.0.2",
"repository": "tunnckoCoreLabs/git-commits-since",
"homepage": "https://github.com/tunnckoCoreLabs/git-commits-since",
"author": "Charlike Mike Reagent (https://tunnckocore.com)",
"publishConfig": {
"access": "public",
"tag": "latest"
},
"renovate": {
"extends": "tunnckocore"
},
"verb": {
"run": true,
"toc": {
"render": true,
"method": "preWrite",
"maxdepth": 4
},
"layout": "empty",
"tasks": [
"readme"
],
"related": {
"list": [
"asia",
"charlike",
"docks",
"gitcommit",
"parse-commit-message",
"detect-next-version",
"@tunnckocore/package-json",
"@tunnckocore/create-project",
"@tunnckocore/update",
"@tunnckocore/config",
"@tunnckocore/scripts"
]
},
"lint": {
"reflinks": true
},
"reflinks": [
"new-release",
"semantic-release",
"detect-next-version",
"execa",
"git-raw-commits",
"git-semver-tags",
"parse-commit-message",
"recommended-bump"
]
}
}