Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Transfer the library to the ubirak organization #42

Merged
merged 2 commits into from
Nov 28, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,2 @@
# node
node_modules

# istanbul code coverage
coverage
5 changes: 0 additions & 5 deletions .istanbul.yml

This file was deleted.

8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ sudo: false

node_js:
# Current
# - "6.9" # The current is the last LTS
- "9"
# LTS
- "6.9"
- "4.4"
- "8"
- "6"
- "4"

script:
- yarn run test
- yarn run lint
- yarn run coverage && yarn run coverage-upload

notifications:
email:
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
# Skippy

[![npm](https://img.shields.io/npm/v/skippy.svg)](https://www.npmjs.com/package/skippy)
[![Build Status](https://travis-ci.org/rezzza/skippy.svg?branch=master)](https://travis-ci.org/rezzza/skippy)
[![Coverage Status](https://coveralls.io/repos/rezzza/skippy/badge.svg?branch=master&service=github)](https://coveralls.io/github/rezzza/skippy?branch=master)
[![Build Status](https://travis-ci.org/ubirak/skippy.svg?branch=master)](https://travis-ci.org/ubirak/skippy)

Skippy is designed to be an easy to use, robust, and well tested dependencies container. No magic inside.

Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,25 +13,25 @@
"main": "index.js",
"scripts": {
"bdd": "NODE_ENV=test mocha --colors --reporter=dot --watch --recursive tests",
"coverage": "NODE_ENV=test istanbul cover node_modules/.bin/_mocha --report lcovonly -- --reporter=dot --recursive tests",
"coverage-upload": "NODE_ENV=test cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"lint": "eslint --color .",
"test": "NODE_ENV=test mocha --colors --reporter=dot --recursive tests"
},
"repository": {
"type": "git",
"url": "git@github.com:rezzza/skippy.git"
"url": "https://github.com/ubirak/skippy.git"
},
"bugs": {
"url": "https://github.com/ubirak/skippy/issues"
},
"homepage": "https://github.com/ubirak/skippy",
"author": "Armand Abric <[email protected]>",
"license": "MIT",
"devDependencies": {
"chai": "~3.5.0",
"coveralls": "^2.11.15",
"chai": "^3.5.0",
"eslint": "^3.14.1",
"istanbul": "~0.4.2",
"mocha": "^3.2.0",
"sinon": "^1.17.7",
"sinon-chai": "~2.8.0"
"sinon-chai": "^2.8.0"
},
"dependencies": {
"lodash": "^4.17.4"
Expand Down
Loading