-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.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
{
"name": "regman",
"version": "0.0.1",
"description": "A CRM tool for handling small registration processes",
"main": "index.js",
"scripts": {
"test": "(cd client && npm run test:coverage) && (cd server && npm run test:coverage)",
"postinstall": "(cd server && npm install); (cd client && npm install)",
"format": "prettier --ignore-path .gitignore --write \"**/*.(js|jsx|ts|tsx|html|css|json|)\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ishdril/regMan.git"
},
"author": "Bernat Duran",
"license": "MIT",
"bugs": {
"url": "https://github.com/Ishdril/regMan/issues"
},
"homepage": "https://github.com/Ishdril/regMan#readme",
"devDependencies": {
"commitizen": "^4.1.2",
"cz-conventional-changelog": "^3.2.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"validate-commit-msg": "^2.14.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"validate-commit-msg": {
"types": [
"feat",
"fix",
"docs",
"style",
"refactor",
"perf",
"test",
"chore",
"revert",
"build",
"ci"
],
"warnOnFail": false,
"maxSubjectLength": 100,
"subjectPatternErrorMsg": "Subject must be in format 'CMS-123 - Commit message'",
"helpMessage": ""
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm test",
"commit-msg": "validate-commit-msg"
}
},
"lint-staged": {
"**/*.(js|jsx|ts|tsx|html|css|json|)": [
"npm run format"
]
},
"prettier": {
"singleQuote": true
},
"dependencies": {}
}