-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.41 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
{
"name": "version-everything",
"version": "0.11.4",
"description": "Use npm to version all kinds of projects, not just javascript.",
"keywords": [
"npm",
"semver",
"version"
],
"homepage": "https://github.com/joemaller/version-everything#readme",
"bugs": {
"url": "https://github.com/joemaller/version-everything/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joemaller/version-everything.git"
},
"license": "MIT",
"author": "Joe Maller <[email protected]> (http://www.joemaller.com)",
"type": "module",
"main": "index.js",
"bin": {
"version-everything": "cli.js"
},
"scripts": {
"test": "vitest",
"version": "node cli.js README.md && auto-changelog && git add -u"
},
"dependencies": {
"auto-changelog": "^2.4.0",
"chalk": "^5.3.0",
"cosmiconfig": "^9.0.0",
"escape-string-regexp": "^5.0.0",
"fs-extra": "^11.2.0",
"glob": "^11.0.0",
"lodash.isplainobject": "^4.0.6",
"plist": "^3.1.0",
"read-package-up": "^11.0.0",
"semver": "^7.6.3",
"sort-package-json": "^2.10.1",
"xml-js": "^1.6.11",
"yaml": "^2.5.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/semver": "^7.5.8",
"@vitest/coverage-v8": "^2.0.5",
"tmp": "^0.2.3",
"vitest": "^2.0.5"
},
"engines": {
"node": ">=16"
},
"auto-changelog": {
"package": true,
"backfillLimit": 7
}
}