Skip to content

Commit

Permalink
Correct typo in git hook configuration (#1163)
Browse files Browse the repository at this point in the history
* Correct typo in git hook configuration

* Reformat package manifest to satisfy linter
  • Loading branch information
jugglinmike authored and fb55 committed Mar 12, 2018
1 parent f2c9233 commit 96c0694
Showing 1 changed file with 6 additions and 22 deletions.
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"]
}
}

0 comments on commit 96c0694

Please sign in to comment.