This repository has been archived by the owner on Feb 24, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.74 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
{
"name": "@webreadyprojects/cz-changelog-wrprojects",
"version": "v0.0.4-abhean",
"description": "🔦 Commitizen adapter for WebReady Projects following the conventional-changelog format.",
"main": "packages/cz-changelog-wrprojects/lib/index.js",
"scripts": {
"build": "father-build",
"commit": "git-cz",
"test": "lerna run test",
"test:coverage": "jest --coverage",
"lint": "yarn lint:eslint",
"lint:eslint": "eslint --cache --fix --ext .js,.jsx --format=pretty lib",
"lint:staged": "lint:staged",
"lint:fix": "eslint --fix --cache --ext .js,.jsx --format=pretty",
"prettier": "prettier --write lib/*.{js,jsx}"
},
"lint-staged": {
"*{js,jsx,md,json}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "/~https://github.com/WebReadyProjects/cz-changelog-wrprojects.git"
},
"author": "Gregoire Favreau <gfavreau.wrprojects@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "/~https://github.com/WebReadyProjects/cz-changelog-wrprojects/issues"
},
"homepage": "/~https://github.com/WebReadyProjects/cz-changelog-wrprojects#readme",
"config": {
"commitizen": {
"path": "packages/cz-changelog-wrprojects/src/index.js"
}
},
"husky": {
"hooks": {
"commit-msg": "'commitlint -E HUSKY_GIT_PARAMS', 'validate-commit-msg'",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"dependencies": {
"lodash.map": "^4.6.0",
"longest": "^2.0.1",
"babel-plugin-add-module-exports": "^1.0.4",
"commitizen": "^4.2.4",
"eslint": "^8.3.0",
"father-build": "^1.20.4",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"prettier": "^2.5.0",
"validate-commit-msg": "^2.14.0",
"webpack": "*"
}
}