Skip to content

Drop node 4 and 5 support. Require npm-package-json-lint 3.x.x #5

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

Merged
merged 1 commit into from
May 10, 2018
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: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,11 @@ sudo: false
language: node_js

node_js:
- "4"
- "5"
- "6"
- "7"
- "8"
- "9"
- "10"

cache:
directories:
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Removed


## [2.0.0] - 2018-05-09
### Changed
- Bump dependencies and require npm-package-json-lint 3.x.x

### Removed
- Dropped support for Node 4 and 5.

## [1.1.0] - 2017-08-02
### Changed
- Bump dependencies
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

### Node

* [Node.js](https://nodejs.org/) - v4.2.0+
* [npm](https://www.npmjs.com/) - v2.14.7+
* [Node.js](https://nodejs.org/) - v6.0.0+
* [npm](https://www.npmjs.com/) - v3.0.0+

## Install project dependencies

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ First thing first, let's make sure you have the necessary pre-requisites.

#### Node

* [Node.js](https://nodejs.org/) - v4.2.0+
* [npm](http://npmjs.com) - v2.14.7+
* [Node.js](https://nodejs.org/) - v6.0.0+
* [npm](http://npmjs.com) - v3.0.0+

### Command

Expand Down
22 changes: 10 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "npm-package-json-lint-config-default",
"version": "1.1.0",
"version": "2.0.0",
"description": "Default npm-package-json-lint shareable config",
"keywords": [
"lint",
Expand All @@ -24,28 +24,26 @@
"main": "index.js",
"scripts": {
"eslint": "eslint *.js --format=node_modules/eslint-formatter-pretty",
"jsonlint": "jsonlint *.json",
"lint": "npm run npmpackagejsonlint && npm run eslint && npm run jsonlint",
"lint": "npm run npmpackagejsonlint && npm run eslint",
"npmpackagejsonlint": "pjl-cli -c .npmpackagejsonlintrc.json",
"test": "mocha"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.10.0",
"eslint-config-tc": "^2.2.0",
"eslint": "^4.19.1",
"eslint-config-tc": "^2.4.0",
"eslint-formatter-pretty": "^1.3.0",
"is-plain-obj": "^1.1.0",
"jsonlint": "^1.6.2",
"mocha": "^4.0.1",
"npm-package-json-lint": "^2.11.0",
"temp-write": "^3.3.0"
"mocha": "^5.1.1",
"npm-package-json-lint": "^2.11.2",
"temp-write": "^3.4.0"
},
"peerDependencies": {
"npm-package-json-lint": ">= 2"
"npm-package-json-lint": ">= 3"
},
"engines": {
"node": ">=4.2.0",
"npm": ">=2.14.7"
"node": ">=6.0.0",
"npm": ">=3.0.0"
},
"license": "MIT"
}