We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7bf7cc7 commit d2ede2eCopy full SHA for d2ede2e
.gitignore
@@ -1 +1,2 @@
1
node_modules/
2
+coverage/
.npmignore
@@ -2,3 +2,4 @@
.gitignore
3
4
test/
5
package.json
@@ -4,7 +4,7 @@
"description": "Parses and determines if a given CSS Media Query matches a set of values.",
"main": "index.js",
6
"scripts": {
7
- "test": "node_modules/.bin/mocha -R spec"
+ "test": "istanbul cover -- ./node_modules/mocha/bin/_mocha test/ --reporter spec"
8
},
9
"repository": {
10
"type": "git",
@@ -25,6 +25,7 @@
25
"homepage": "https://github.com/ericf/css-media-match",
26
"devDependencies": {
27
"mocha": "~1.16.2",
28
- "chai": "~1.8.1"
+ "chai": "~1.8.1",
29
+ "istanbul": "~0.2.3"
30
}
31
0 commit comments