Skip to content

Commit bec9cdb

Browse files
committed
build: add missing dependency
1 parent 207bf9e commit bec9cdb

1 file changed

Lines changed: 22 additions & 21 deletions

File tree

package.json

Lines changed: 22 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -31,24 +31,25 @@
3131
"jschardet": "~2.1.0"
3232
},
3333
"devDependencies": {
34+
"@commitlint/cli": "latest",
35+
"@commitlint/config-conventional": "latest",
3436
"chai": "latest",
37+
"ci-publish": "latest",
38+
"conventional-github-releaser": "latest",
3539
"coveralls": "latest",
40+
"finepack": "latest",
41+
"git-authors-cli": "latest",
3642
"git-dirty": "latest",
3743
"got": "latest",
3844
"husky": "latest",
3945
"lint-staged": "latest",
4046
"mocha": "latest",
47+
"npm-check-updates": "latest",
4148
"nyc": "latest",
4249
"prettier-standard": "latest",
4350
"standard": "latest",
4451
"standard-markdown": "latest",
45-
"@commitlint/cli": "latest",
46-
"@commitlint/config-conventional": "latest",
47-
"conventional-github-releaser": "latest",
48-
"finepack": "latest",
49-
"git-authors-cli": "latest",
50-
"npm-check-updates": "latest",
51-
"ci-publish": "latest"
52+
"standard-version": "latest"
5253
},
5354
"files": [
5455
"index.js"
@@ -58,24 +59,29 @@
5859
"coveralls": "nyc report --reporter=text-lcov | coveralls",
5960
"dev": "nodemon --exec \"npm start\" -e \"js\"",
6061
"lint": "standard-markdown README.md && standard",
62+
"postrelease": "npm run release:tags && npm run release:github && ci-publish",
6163
"prelint": "npm run pretty",
64+
"prerelease": "npm run update:check",
6265
"pretest": "npm run lint",
6366
"pretty": "prettier-standard {core,test,bin}/**/*.js",
64-
"start": "node index.js",
65-
"test": "nyc mocha",
66-
"postrelease": "npm run release:tags && npm run release:github && ci-publish",
67-
"prerelease": "npm run update:check",
67+
"release": "standard-version -a",
6868
"release:github": "conventional-github-releaser -p angular",
6969
"release:tags": "git push --follow-tags origin HEAD:master",
70-
"release": "standard-version -a",
71-
"update:check": "ncu -- --error-level 2",
72-
"update": "ncu -u"
70+
"start": "node index.js",
71+
"test": "nyc mocha",
72+
"update": "ncu -u",
73+
"update:check": "ncu -- --error-level 2"
7374
},
7475
"license": "MIT",
76+
"commitlint": {
77+
"extends": [
78+
"@commitlint/config-conventional"
79+
]
80+
},
7581
"husky": {
7682
"hooks": {
77-
"pre-commit": "lint-staged",
78-
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
83+
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
84+
"pre-commit": "lint-staged"
7985
}
8086
},
8187
"lint-staged": {
@@ -98,10 +104,5 @@
98104
"env": [
99105
"mocha"
100106
]
101-
},
102-
"commitlint": {
103-
"extends": [
104-
"@commitlint/config-conventional"
105-
]
106107
}
107108
}

0 commit comments

Comments
 (0)