|
19 | 19 | "release": "standard-version",
|
20 | 20 | "release:major": "yarn release --release-as major",
|
21 | 21 | "release:minor": "yarn release --release-as minor",
|
22 |
| - "release:patch": "yarn release --release-as patch" |
| 22 | + "release:patch": "yarn release --release-as patch", |
| 23 | + "husky": "husky", |
| 24 | + "lint-staged": "lint-staged", |
| 25 | + "commitlint": "commitlint" |
23 | 26 | },
|
24 | 27 | "keywords": [
|
25 | 28 | "yeoman-generator",
|
26 | 29 | "create-dotgithub"
|
27 | 30 | ],
|
28 | 31 | "dependencies": {
|
29 |
| - "axios": "^0.21.1", |
30 |
| - "chalk": "^4.1.0", |
31 |
| - "yeoman-generator": "^4.12.0", |
32 |
| - "yosay": "^2.0.2" |
| 32 | + "axios": "0.21.1", |
| 33 | + "chalk": "4.1.1", |
| 34 | + "yeoman-generator": "5.3.0", |
| 35 | + "yosay": "2.0.2" |
33 | 36 | },
|
34 | 37 | "devDependencies": {
|
35 |
| - "@boringcodes/eslint-config": "^1.2.1", |
36 |
| - "@boringcodes/prettier-config": "^1.3.1", |
37 |
| - "eslint": "^7.17.0", |
38 |
| - "eslint-config-prettier": "^7.1.0", |
39 |
| - "eslint-config-standard": "^16.0.2", |
40 |
| - "eslint-plugin-import": "^2.22.1", |
41 |
| - "eslint-plugin-node": "^11.1.0", |
42 |
| - "eslint-plugin-promise": "^4.2.1", |
43 |
| - "husky": "^4.3.7", |
44 |
| - "lint-staged": "^10.5.3", |
45 |
| - "prettier": "^2.2.1", |
46 |
| - "rimraf": "^3.0.2", |
47 |
| - "standard-version": "^9.1.0" |
| 38 | + "@boringcodes/eslint-config": "1.2.6", |
| 39 | + "@boringcodes/prettier-config": "1.3.2", |
| 40 | + "@commitlint/cli": "12.1.4", |
| 41 | + "@commitlint/config-conventional": "12.1.4", |
| 42 | + "eslint": "7.28.0", |
| 43 | + "eslint-config-prettier": "8.3.0", |
| 44 | + "eslint-config-standard": "16.0.3", |
| 45 | + "eslint-plugin-import": "2.23.4", |
| 46 | + "eslint-plugin-node": "11.1.0", |
| 47 | + "eslint-plugin-promise": "5.1.0", |
| 48 | + "husky": "6.0.0", |
| 49 | + "lint-staged": "11.0.0", |
| 50 | + "prettier": "2.3.1", |
| 51 | + "rimraf": "3.0.2", |
| 52 | + "standard-version": "9.3.0" |
| 53 | + }, |
| 54 | + "lint-staged": { |
| 55 | + "*.{js,json,md,yml}": "yarn format", |
| 56 | + "*.js": "yarn lint" |
| 57 | + }, |
| 58 | + "commitlint": { |
| 59 | + "extends": [ |
| 60 | + "@commitlint/config-conventional" |
| 61 | + ] |
48 | 62 | }
|
49 | 63 | }
|
0 commit comments