Skip to content
This repository was archived by the owner on Mar 13, 2024. It is now read-only.

Commit b8efac2

Browse files
committed
Require at least Node 6
1 parent 5bf9ba6 commit b8efac2

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.travis.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
language: node_js
22
node_js:
3-
- '0.10'
4-
- '0.12'
5-
- 'iojs'
6-
- '4'
7-
- '5'
83
- '6'
94
- '7'
105
- '8'

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
"scripts": {
1010
"test": "standard && node cli.js test/ && node cli.js . && node cli.js . --missing --extra --no-dev -e js:detective-cjs"
1111
},
12+
"engines": {
13+
"node": ">=6.0.0"
14+
},
1215
"author": "max ogden",
1316
"dependencies": {
1417
"async": "^2.1.4",

readme.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ checks which modules you have used in your code and then makes sure they are lis
77

88
[![js-standard-style](https://cdn.rawgit.com/feross/standard/master/badge.svg)](https://github.com/feross/standard)
99

10+
## requirements
11+
12+
dependency-check `3.x` supports Node.js 6 and later
13+
1014
## how it works
1115

1216
`dependency-check` parses your module code starting from the default entry files (e.g. `index.js` or `main` and any `bin` commands defined in package.json) and traverses through all relatively required JS files, ultimately producing a list of non-relative modules

0 commit comments

Comments
 (0)