Skip to content

Commit

Permalink
Remove NPM version requirement (#83)
Browse files Browse the repository at this point in the history
This is causing my docker builds to fail intermittently because the
version of NPM there no longer matches this regex. There isn't any major
reason for this to be required so I am just removing it here to get over
that issue.
  • Loading branch information
TJTorola authored Jan 29, 2020
1 parent 5a332cd commit dc3ce7a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
{
"name": "parse-mockdb",
"version": "0.2.4",
"version": "0.2.5",
"description": "Parse JS SDK Mocked Database",
"main": "src/parse-mockdb.js",
"engines": {
"node": ">=5.0.0",
"npm": "5.3.x"
"node": ">=5.0.0"
},
"scripts": {
"test": "npm run lint && mocha ./test/test",
Expand Down

0 comments on commit dc3ce7a

Please sign in to comment.