Skip to content
This repository has been archived by the owner on Jul 4, 2023. It is now read-only.

Commit

Permalink
Merge 507a227 into b58d4ed
Browse files Browse the repository at this point in the history
  • Loading branch information
ralphtheninja committed Aug 2, 2018
2 parents b58d4ed + 507a227 commit 75617df
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -4,3 +4,4 @@ node_modules/
test.sqlite
db.sqlite
db.sqlite-journal
.nyc_output/
1 change: 1 addition & 0 deletions .npmignore
@@ -1,3 +1,4 @@
.travis.yml
build/
scripts/travis-before-install.sh
.nyc_output/
3 changes: 3 additions & 0 deletions .travis.yml
Expand Up @@ -25,5 +25,8 @@ install:
script:
- npm test

after_success:
- npm run coverage

notifications:
email: false
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -4,6 +4,7 @@
[![Build Status](https://travis-ci.org/deltachat/deltachat-node.svg?branch=master)](https://travis-ci.org/deltachat/deltachat-node)
![Node version](https://img.shields.io/node/v/deltachat-node.svg)
[![Coverage Status](https://coveralls.io/repos/github/deltachat/deltachat-node/badge.svg)](https://coveralls.io/github/deltachat/deltachat-node)
[![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com)

**WORK IN PROGRESS** The API can change at any time and will not follow semver versioning until `v1.0.0` has been released.
Expand Down
5 changes: 4 additions & 1 deletion package.json
Expand Up @@ -7,7 +7,8 @@
"dev": "node-gyp rebuild --debug --verbose",
"submodule": "git submodule update --recursive --init",
"install": "./scripts/rebuild-all",
"test": "standard && node test/index.js"
"test": "standard && nyc node test/index.js",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"homepage": "https://github.com/deltachat/deltachat-node",
"repository": {
Expand All @@ -25,6 +26,8 @@
"xtend": "^4.0.1"
},
"devDependencies": {
"coveralls": "^3.0.2",
"nyc": "^12.0.2",
"standard": "^11.0.1",
"tape": "^4.9.1",
"tempy": "^0.2.1"
Expand Down

0 comments on commit 75617df

Please sign in to comment.