1
0
mirror of https://github.com/lancedikson/bowser synced 2026-03-02 03:40:27 +00:00

Add coveralls integration

fixes #225
This commit is contained in:
Denis Demchenko
2018-06-30 17:35:12 +03:00
parent 48fe1d33cb
commit 0ea3fe16a4
4 changed files with 375 additions and 7 deletions

View File

@@ -31,6 +31,7 @@
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"coveralls": "^3.0.2",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-ava": "^4.5.1",
@@ -53,9 +54,10 @@
"test": "test"
},
"scripts": {
"lint": "./node_modules/.bin/eslint ./src --fix",
"lint": "eslint ./src --fix",
"testem": "testem",
"test": "./node_modules/.bin/ava"
"test": "nyc --reporter=html --reporter=text ava",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"license": "MIT"
}