-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.03 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
{
"name": "m1-heating",
"version": "0.0.3",
"license": "MIT",
"bin": "src/bin.js",
"author": {
"name": "xiefeng",
"email": "[email protected]"
},
"files": [
"src",
"mac-temperature"
],
"type": "module",
"scripts": {
"prepare": "husky install",
"release": "standard-version"
},
"dependencies": {
"log4js": "^6.7.1",
"yargs": "^17.6.2"
},
"devDependencies": {
"@0x1461a0/commitlint-config": "^0.0.5",
"@0x1461a0/cz-config": "^0.0.5",
"@0x1461a0/eslint-config": "^0.0.1",
"commitizen": "4.2.4",
"commitlint": "^17.4.2",
"cz-customizable": "^7.0.0",
"eslint": "^8.32.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"standard-version": "^9.5.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./node_modules/@0x1461a0/cz-config"
}
},
"commitlint": {
"extends": [
"@0x1461a0"
]
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --fix"
}
}