Skip to content

Commit

Permalink
Switches to Node 8 (major)
Browse files Browse the repository at this point in the history
  • Loading branch information
zrrrzzt committed Jun 7, 2018
1 parent 8dede90 commit bb72d76
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 10 deletions.
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# IDE
.idea
.vscode

# OS X
.DS_Store
Expand Down Expand Up @@ -41,3 +42,9 @@ jspm_packages

# Optional REPL history
.node_repl_history

# Env
.env

# Lock
package-lock.json
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
language: node_js
node_js:
- "4"
- "6"
- "8"
after_success:
- npm run coveralls
7 changes: 2 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[![Build Status](https://travis-ci.org/telemark/birthdate-from-id.svg?branch=master)](https://travis-ci.org/telemark/birthdate-from-id)
[![Build Status](https://travis-ci.com/telemark/birthdate-from-id.svg?branch=master)](https://travis-ci.com/telemark/birthdate-from-id)
[![Coverage Status](https://coveralls.io/repos/telemark/birthdate-from-id/badge.svg?branch=master&service=github)](https://coveralls.io/github/telemark/birthdate-from-id?branch=master)
[![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat)](https://github.com/feross/standard)
[![Greenkeeper badge](https://badges.greenkeeper.io/telemark/birthdate-from-id.svg)](https://greenkeeper.io/)

# birthdate-from-id

Expand All @@ -11,9 +10,7 @@ It supports fødselsnummer, D-nummer and VGO-nummer

## Usage

```javascript
'use strict'

```JavaScript
const birthdateFromId = require('birthdate-from-id')
const fid = '01010750160'
const did = '41085801188'
Expand Down
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,15 @@
"homepage": "https://github.com/telemark/birthdate-from-id",
"main": "index.js",
"engines": {
"node": ">=4.8.4"
"node": ">=8.11.2"
},
"scripts": {
"test": "standard && nsp check && tap --reporter=spec test/*.js",
"coverage": "tap test/*.js --coverage",
"coveralls": "tap --cov --coverage-report=lcov test/*.js && cat coverage/lcov.info | coveralls",
"setup": "npm install",
"standard-fix": "standard --fix"
"standard-fix": "standard --fix",
"refresh": "rm -rf node_modules && rm package-lock.json && npm install"
},
"repository": {
"type": "git",
Expand All @@ -33,4 +34,4 @@
"standard": "11.0.1",
"tap": "12.0.1"
}
}
}

0 comments on commit bb72d76

Please sign in to comment.