Merge pull request #1263 from strongloop/fix-engines-2.x

fix incorrect engines property in package.json
This commit is contained in:
Ryan Graham 2017-03-03 13:08:59 -08:00 committed by GitHub
commit f7af629e96
1 changed files with 3 additions and 3 deletions

View File

@ -28,9 +28,9 @@
"test": "mocha",
"posttest": "npm run lint"
},
"engines": [
"node >= 0.6"
],
"engines": {
"node": ">= 0.6"
},
"devDependencies": {
"async-iterators": "^0.2.2",
"bluebird": "^2.9.9",