Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ npm test
To check the code coverage is still great:
```
npm run coverage
google-chrome ./coverage.html
google-chrome ./coverage/lcov-report/index.html
```

To see code complexity statistics:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"scripts": {
"test": "node ./node_modules/mocha/bin/mocha --require use-strict -S -R spec ./test/*.js",
"start": "node example/server.js",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha -- -S -R spec",
"complexity": "node ./node_modules/plato/bin/plato -r -d complexity lib",
"performance": "node --allow-natives-syntax --harmony ./node_modules/mocha/bin/_mocha -S --reporter mocha-performance ./test/*.js",
"lint": "node ./node_modules/eslint/bin/eslint ./example ./lib ./test --quiet && echo '✔ All good!'",
Expand Down