-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 991 Bytes
/
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
{
"name": "dotfiles",
"version": "0.94.0",
"description": "PatEvs' personal system configuration dotfiles",
"author": "PatEvs",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/patevs/dotfiles.git"
},
"type": "module",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"scripts": {
"prepare": "husky install",
"postinstall": "script-progress node ./scripts/postInstall",
"updates": "script-progress node ./scripts/checkUpdates",
"release": "np"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"chalk": "^5.0.1",
"commitlint-config-gitmoji": "^2.2.5",
"husky": "^8.0.1",
"np": "^7.6.2",
"script-progress": "^1.0.5"
},
"resolutions": {
"got": "^11.8.5"
},
"commitlint": {
"extends": [
"gitmoji"
],
"rules": {
"type-empty": [
0,
"never"
],
"subject-empty": [
0,
"never"
]
}
}
}