This repository was archived by the owner on Sep 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.4 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.4 KB
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
{
"name": "@jarrodldavis/remark-changelog-version-bump",
"version": "0.1.1",
"description": "A remark plugin to handle version bumps for changelogs adhering to Keep a Changelog",
"main": "index.js",
"scripts": {
"test": "jasmine",
"preversion": "run-preversion",
"version": "run-version",
"postversion": "run-postversion",
"mergeversion": "run-mergeversion"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jarrodldavis/remark-changelog-version-bump.git"
},
"keywords": [
"npm",
"npm-version",
"semantic-version",
"version-bump",
"changelog",
"keep-a-changelog",
"remark",
"remark-plugin",
"remark-cli"
],
"author": "Jarrod Davis <developer@jarrodldavis.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jarrodldavis/remark-changelog-version-bump/issues"
},
"homepage": "https://github.com/jarrodldavis/remark-changelog-version-bump#readme",
"dependencies": {
"mdast-util-assert": "^2.0.0",
"unist-util-is": "^2.1.2",
"unist-util-map": "^1.0.4",
"unist-util-visit": "^2.0.0"
},
"devDependencies": {
"@jarrodldavis/version-scripts": "^0.1.0",
"indent-string": "^4.0.0",
"jasmine": "^3.4.0",
"unified": "^8.3.2",
"unist-builder": "^1.0.3",
"unist-diff": "^2.0.0",
"unist-util-inspect": "^4.1.3"
},
"peerDependencies": {
"remark-cli": "^6.0.0"
}
}