We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 814b314 commit c38fef6Copy full SHA for c38fef6
.gitignore
@@ -1 +1,2 @@
1
-node_modules
+/node_modules
2
+/coverage
package.json
@@ -15,6 +15,7 @@
15
"eslint": "^3.4.0",
16
"express": "^4.14.0",
17
"file-loader": "^0.9.0",
18
+ "istanbul": "^0.4.5",
19
"mocha": "^3.0.2",
20
"mocha-sinon": "^1.1.6",
21
"should": "^11.1.0",
@@ -41,6 +42,7 @@
41
42
"pretest": "npm run -s lint",
43
"test": "mocha --full-trace --check-leaks",
44
"beautify": "npm run lint -- --fix",
- "travis": "npm test && node middleware.js"
45
+ "cover": "istanbul cover node_modules/mocha/bin/_mocha",
46
+ "travis": "npm run cover && npm run -s lint"
47
}
48
0 commit comments