Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct typo in git hook configuration #1163

Merged
merged 2 commits into from
Mar 12, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 6 additions & 22 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,17 @@
{
"name": "cheerio",
"version": "1.0.0-rc.2",
"description": "Tiny, fast, and elegant implementation of core jQuery designed specifically for the server",
"description":
"Tiny, fast, and elegant implementation of core jQuery designed specifically for the server",
"author": "Matt Mueller <mattmuelle@gmail.com> (mat.io)",
"license": "MIT",
"keywords": [
"htmlparser",
"jquery",
"selector",
"scraper",
"parser",
"html"
],
"keywords": ["htmlparser", "jquery", "selector", "scraper", "parser", "html"],
"repository": {
"type": "git",
"url": "git://github.com/cheeriojs/cheerio.git"
},
"main": "./index.js",
"files": [
"index.js",
"lib"
],
"files": ["index.js", "lib"],
"engines": {
"node": ">= 0.6"
},
Expand Down Expand Up @@ -55,14 +46,7 @@
"singleQuote": true
},
"lint-staged": {
"*.js": [
"pretter --write",
"eslint --fix",
"git add"
],
"*.json": [
"pretter --write",
"git add"
]
"*.js": ["prettier --write", "eslint --fix", "git add"],
"*.json": ["prettier --write", "git add"]
}
}