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

Commit

Permalink
refactor: raise minimum supported Node version
Browse files Browse the repository at this point in the history
BREAKING CHANGE:

Remove support for Node 0.12 and 0.10. Node 0.12 and 0.10 have already
reached their respective end-of-life dates and will no longer receive
updates, including security fixes.
  • Loading branch information
hutson committed Jan 19, 2018
1 parent 6561efc commit 381f331
Show file tree
Hide file tree
Showing 3 changed files with 1,722 additions and 237 deletions.
27 changes: 0 additions & 27 deletions .jsdocsrc

This file was deleted.

21 changes: 11 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
{
"author": {
"name": "Adam Herrmann",
"email": "aherrmann@factset.com"
"email": "aherrmann@factset.com",
"url": "https://github.com/AdamHerrmann"
},
"bin": "",
"bugs": "https://github.com/factset/labeledpipe/issues",
"description": "Lazypipe with labels",
"engines": {
"node": "^6.0.0 || ^5.0.0 || ^4.0.0 || ^0.12.0 || ^0.10.0",
"npm": "^3.0.0 || ^2.7.5"
"node": ">=4.2.0",
"npm": ">=2.1.9"
},
"files": [
"index.js"
],
"homepage": "https://github.com/factset/labeledpipe",
"homepage": "https://github.com/factset/labeledpipe#readme",
"keywords": [
"gulp",
"gulpfriendly",
Expand All @@ -34,12 +36,11 @@
"url": "https://github.com/factset/labeledpipe.git"
},
"scripts": {
"dev": "docker run --rm --user node -v \"$(pwd)\":/app -w /app -it node:4 sh -c \"yarn install; yarn test; bash\"",
"lint": "jshint index.js test",
"checkStyle": "jscs index.js test",
"test": "mocha test",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha test",
"docs": "jsdoc --configure .jsdocsrc",
"build": "npm run lint && npm run checkStyle"
"test": "yarn run coverage && yarn run lint && yarn run checkStyle",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha test"
},
"version": "1.5.0",
"dependencies": {
Expand All @@ -50,13 +51,13 @@
"devDependencies": {
"chai": "^3.5.0",
"codecov": "^2.0.0",
"ink-docstrap": "^1.1.4",
"istanbul": "^0.4.2",
"jscs": "^3.0.0",
"jsdoc": "^3.4.0",
"jshint": "^2.9.1",
"lazypipe": "^1.0.1",
"mocha": "^3.0.0",
"npm-publish-git-tag": "^1.1.14",
"semantic-release-github": "^3.0.8",
"sinon": "^2.0.0",
"sinon-chai": "^2.8.0",
"through2": "^2.0.1"
Expand Down
Loading

0 comments on commit 381f331

Please sign in to comment.