forked from conventional-changelog/standard-version
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.68 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
94
95
96
97
98
99
{
"name": "@immobiliarelabs/standard-version",
"version": "10.3.1",
"description": "replacement for `npm version` with automatic CHANGELOG generation",
"bin": "bin/cli.js",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"scripts": {
"fix": "eslint . --fix",
"test": "nyc mocha --timeout=30000",
"test:unit": "mocha --exclude test/git.spec.js",
"coverage": "nyc report --reporter=lcov",
"prepare": "node prepare.js || echo 'Skipping prepare script'"
},
"nyc": {
"exclude": [
"tmp/**"
]
},
"repository": {
"url": "https://github.com/immobiliare/standard-version"
},
"engines": {
"node": ">=14"
},
"keywords": [
"conventional-changelog",
"recommended",
"changelog",
"automatic",
"workflow",
"version",
"angular",
"standard"
],
"author": "Simone Corsi <[email protected]>",
"contributors": [
{
"name": "Ben Coe",
"email": "[email protected]",
"url": "https://github.com/bcoe"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/immobiliare/standard-version/issues"
},
"homepage": "https://github.com/immobiliare/standard-version#readme",
"dependencies": {
"chalk": "^2.4.2",
"conventional-changelog": "^3.1.25",
"conventional-changelog-config-spec": "^2.1.0",
"conventional-changelog-conventionalcommits": "^5.0.0",
"conventional-recommended-bump": "6.1.0",
"detect-indent": "^6.0.0",
"detect-newline": "^3.1.0",
"dotgitignore": "^2.1.0",
"figures": "^3.1.0",
"find-up": "^5.0.0",
"git-semver-tags": "^7.0.1",
"handlebars": "^4.7.8",
"semver": "^7.1.1",
"stringify-package": "^1.0.1",
"yargs": "^17.5.1"
},
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@saithodev/semantic-release-backmerge": "^2.1.2",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.4",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"chai": "^4.2.0",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.1",
"is-ci": "^3.0.1",
"lint-staged": "^13.0.0",
"markdown-toc": "^1.2.0",
"mocha": "^10.0.0",
"mock-fs": "^5.1.2",
"mockery": "^2.1.0",
"nyc": "^15.1.0",
"prettier": "^2.6.2",
"shelljs": "^0.8.4",
"std-mocks": "^1.0.1"
},
"volta": {
"node": "18.13.0"
}
}