Skip to content

Commit

Permalink
Merge 839ebe8 into 6e5d8b0
Browse files Browse the repository at this point in the history
  • Loading branch information
allevo committed Aug 23, 2018
2 parents 6e5d8b0 + 839ebe8 commit 35be7b6
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 1 deletion.
15 changes: 15 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
language: node_js

node_js:
- "10"
- "9"
- "8"

script:
- npm run test
- npm run coveralls -- -c

notifications:
email:
on_success: never
on_failure: always
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Custom Plugin Node Library

[![Build Status](https://travis-ci.org/mia-platform/custom-plugin-lib.svg?branch=master)](https://travis-ci.org/mia-platform/custom-plugin-lib)
[![Coverage Status](https://coveralls.io/repos/github/mia-platform/custom-plugin-lib/badge.svg?branch=master)](https://coveralls.io/github/mia-platform/custom-plugin-lib?branch=master)

## Summary
This library helps you to implement the new platform custom plugins.
The most basic (and powerful) plugin is the rawCustomPlugin.
Expand Down
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@
"start": "echo 'unable to start the library directly' && exit 1",
"test": "npm run lint && npm run unit && npm run checkonly && npm run typescript",
"unit": "tap -b -o tap.log tests/*.test.js",
"typescript": "tsc --project ./tests/types/tsconfig.json"
"typescript": "tsc --project ./tests/types/tsconfig.json",
"coveralls": "npm run unit -- --cov"
},
"dependencies": {
"ajv": "^6.5.2",
Expand All @@ -43,6 +44,7 @@
},
"devDependencies": {
"@mia-platform/standard-mia": "^1.1.0",
"coveralls": "^3.0.2",
"nock": "^9.4.4",
"pre-commit": "^1.2.2",
"snazzy": "^7.1.1",
Expand Down

0 comments on commit 35be7b6

Please sign in to comment.