-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
44 lines (44 loc) · 1.01 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
{
"name": "chocolatey-packages",
"version": "1.0.0",
"description": "Hooks and other things for allowing development",
"private": true,
"engines": {
"node": ">= 10.0.0"
},
"scripts": {
"prepare": "husky install",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AdmiringWorm/chocolatey-packages.git"
},
"bugs": {
"url": "https://github.com/AdmiringWorm/chocolatey-packages/issues"
},
"homepage": "https://github.com/AdmiringWorm/chocolatey-packages#readme",
"dependencies": {
"eclint": "2.8.1",
"husky": "8.0.3",
"imagemin-lint-staged": "0.5.1",
"lint-staged": "13.2.0",
"prettier": "2.8.7"
},
"lint-staged": {
"*": [
"eclint fix"
],
"*.{md,json,yml,yaml}": [
"prettier --write"
],
"*.{jpeg,jpg,gif,png,svg}": [
"imagemin-lint-staged"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}