-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.89 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
69
70
71
72
73
74
75
{
"name": "cert-helper",
"version": "1.0.0",
"description": "install certificate and verify",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint:style": "stylelint --fix lib/**/*.{less,scss,css}",
"lint:js": "eslint --fix lib --ext .js,.jsx",
"release": "standard-version && git push -u --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hxfdarling/cert-helper.git"
},
"author": "zman",
"license": "ISC",
"bugs": {
"url": "https://github.com/hxfdarling/cert-helper/issues"
},
"homepage": "https://github.com/hxfdarling/cert-helper#readme",
"devDependencies": {
"@a8k/changelog": "^2.3.0",
"@commitlint/cli": "^8.3.5",
"commitizen": "^4.0.3",
"commitlint-config-cz": "^0.12.1",
"cz-customizable": "^6.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.0",
"husky": "^4.0.10",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"standard-version": "^7.0.1",
"stylelint": "^13.0.0",
"stylelint-config-css-modules": "^2.2.0",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-standard": "^19.0.0",
"stylelint-scss": "^3.13.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": "node_modules/@a8k/changelog/cz-config.js"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{json,md}": [
"prettier --write",
"git add"
],
"*.{css,less,scss}": [
"prettier --write",
"stylelint --fix",
"git add"
],
"*.{ts,tsx}": [
"prettier --write",
"git add"
],
"*.{jsx,js}": [
"prettier --write",
"eslint --fix",
"git add"
]
}
}