Skip to content
Open
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
coverage
node_modules
npm-debug.log
.nyc_output
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,14 @@
"jshint": "~2.9.0",
"mocha": "~3.0.2",
"chai": "~3.0.0",
"nyc": "~13.0.1",
"mockery": "~1.4.0",
"spooks": "~2.0.0",
"cheerio": "~0.19.0"
},
"scripts": {
"lint": "jshint src --config .jshintrc",
"test": "mocha --ui tdd --reporter spec --recursive --colors test"
"test": "mocha --ui tdd --reporter spec --recursive --colors test",
"coverage": "nyc mocha --ui tdd --reporter spec --recursive --colors test"
}
}