We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73a9ffd commit be8776aCopy full SHA for be8776a
2 files changed
.travis.yml
@@ -4,3 +4,5 @@ node_js:
4
- "5"
5
- "4"
6
- "0.12"
7
+script:
8
+ - npm run test-travis
package.json
@@ -7,6 +7,7 @@
"test": "test"
},
9
"scripts": {
10
+ "test-travis": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
11
"test": "mocha test",
12
"prebuild": "npm test",
13
"build": "webpack --config webpack.config.js"
@@ -28,7 +29,10 @@
28
29
"homepage": "https://github.com/SimplePEG/JavaScript#readme",
30
"devDependencies": {
31
"chai": "^3.5.0",
32
+ "coveralls": "^2.11.9",
33
+ "istanbul": "^0.4.4",
34
"mocha": "^2.4.5",
35
+ "mocha-lcov-reporter": "^1.2.0",
36
"recursive-readdir-sync": "^1.0.6",
37
"webpack": "^1.13.1"
38
}
0 commit comments