Skip to content

Commit

Permalink
package.json changes
Browse files Browse the repository at this point in the history
  • Loading branch information
rafamel committed Oct 21, 2017
1 parent 1ca820c commit d44312c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ If there is not `output` file, the contents will be written to the `stdout`. The
```bash
Options:
-i, --input Path to input file
-o, --output Path to output file
-o, --output Path to output file (optional)
-e, --ext Extension array (comma separated, optional)
--version Show version number
--help Show help
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
"yimp": "bin/yimp.js"
},
"scripts": {
"lint": "eslint lib/**/*.js && eslint bin/**/*.js",
"lint:test": "eslint test/**/*.js",
"lint": "eslint ./lib --ext .js && eslint ./bin --ext .js",
"lint:test": "eslint ./test --ext .js",
"lint:md": "markdownlint *.md --config markdown.json",
"test": "npm run lint:test && jest ./test/.*.test.js --runInBand --verbose",
"watch": "nodemon ./node_modules/.bin/run-s lint test",
"checks": "run-s lint lint:* && jest ./test/.*.test.js",
"checks": "run-s lint lint:* && jest ./test/.*.test.js && npm outdated",
"prepublishOnly": "npm run checks",
"update:packages": "rm -rf node_modules && rm package-lock.json && npm update --save/save-dev && npm install && npm outdated"
},
Expand Down

0 comments on commit d44312c

Please sign in to comment.