forked from conventional-changelog/standard-version
-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
73 lines (73 loc) · 2.19 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
{
"name": "commit-and-tag-version",
"version": "12.5.0",
"description": "replacement for `npm version` with automatic CHANGELOG generation",
"bin": "bin/cli.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"posttest": "npm run lint && npm run format:check",
"format:base": "prettier \"./**/*.{ts,js}\"",
"format:fix": "npm run format:base -- --write",
"format:check": "npm run format:base -- --check",
"test": "jest",
"test:unit": "jest --testPathIgnorePatterns test/git.integration-test.js",
"test:git-integration": "jest --testPathPattern test/git.integration-test.js",
"release": "bin/cli.js"
},
"repository": "absolute-version/commit-and-tag-version",
"engines": {
"node": ">=18"
},
"keywords": [
"conventional-changelog",
"recommended",
"changelog",
"automatic",
"workflow",
"version",
"angular",
"standard"
],
"author": "Ben Coe <[email protected]>",
"contributors": [
"Timothy Jones <[email protected]> (https://github.com/TimothyJones)"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/absolute-version/commit-and-tag-version/issues"
},
"homepage": "https://github.com/absolute-version/commit-and-tag-version#readme",
"dependencies": {
"chalk": "^2.4.2",
"conventional-changelog": "4.0.0",
"conventional-changelog-config-spec": "2.1.0",
"conventional-changelog-conventionalcommits": "6.1.0",
"conventional-recommended-bump": "7.0.1",
"detect-indent": "^6.1.0",
"detect-newline": "^3.1.0",
"dotgitignore": "^2.1.0",
"figures": "^3.2.0",
"find-up": "^5.0.0",
"git-semver-tags": "^5.0.1",
"jsdom": "^25.0.1",
"semver": "^7.6.3",
"w3c-xmlserializer": "^5.0.0",
"yaml": "^2.6.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-n": "^17.11.1",
"eslint-plugin-promise": "^7.1.0",
"jest": "^29.7.0",
"jest-serial-runner": "^1.2.1",
"prettier": "^3.3.3",
"shelljs": "^0.8.5",
"strip-ansi": "^6.0.1"
}
}