-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.37 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
{
"name": "@anly_yaw/prettier-config",
"version": "0.1.0",
"description": "my prettier config",
"keywords": [
"eslint-config",
"prettier",
"typescript"
],
"main": "index.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint --ext js,.ts,.tsx ./ --max-warnings 0",
"lint:fix": "eslint --ext js,.ts,.tsx ./ --max-warnings 0 --fix",
"commit": "git-cz",
"release": "standard-version",
"publish": "npm publish",
"prepare": "husky install",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "https://github.com/anlyyao/prettier-config.git"
},
"author": {
"name": "anlyyao",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.0",
"prettier": "^2.6.2",
"standard-version": "^9.3.2"
},
"peerDependencies": {
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.6.2"
},
"lint-staged": {
"*.{js,ts,tsx,vue}": [
"prettier --write",
"npm run lint:fix"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}