Skip to content

Commit

Permalink
Add engine min requirement of node 6
Browse files Browse the repository at this point in the history
  • Loading branch information
mileszim committed Oct 19, 2018
1 parent 60fcaa5 commit 495d007
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docs/index.json
Original file line number Diff line number Diff line change
Expand Up @@ -2054,7 +2054,7 @@
},
{
"kind": "packageJSON",
"content": "{\n \"name\": \"webpurify\",\n \"version\": \"2.1.0\",\n \"description\": \"This provides an easy module for interacting with the WebPurify API\",\n \"main\": \"dist/index.js\",\n \"scripts\": {\n \"test\": \"./node_modules/.bin/mocha --require @babel/register\",\n \"build\": \"./node_modules/.bin/babel src --out-dir dist\",\n \"build-docs\": \"./node_modules/.bin/esdoc\",\n \"clean\": \"rm -rf ./node_modules ./dist\"\n },\n \"repository\": \"https://github.com/mileszim/webpurify\",\n \"keywords\": [\n \"webpurify\",\n \"api\"\n ],\n \"author\": \"Miles Zimmerman\",\n \"license\": \"MIT\",\n \"devDependencies\": {\n \"@babel/cli\": \"^7.1.2\",\n \"@babel/core\": \"^7.1.2\",\n \"@babel/preset-env\": \"^7.1.0\",\n \"@babel/register\": \"^7.0.0\",\n \"@babel/polyfill\": \"^7.0.0\",\n \"chai\": \"^4.2.0\",\n \"chai-as-promised\": \"^7.1.1\",\n \"esdoc\": \"^1.1.0\",\n \"esdoc-standard-plugin\": \"^1.0.0\",\n \"mocha\": \"^5.2.0\",\n \"nock\": \"^10.0.1\",\n \"sinon\": \"^7.0.0\"\n }\n}\n",
"content": "{\n \"name\": \"webpurify\",\n \"version\": \"2.1.0\",\n \"description\": \"This provides an easy module for interacting with the WebPurify API\",\n \"main\": \"dist/index.js\",\n \"scripts\": {\n \"test\": \"./node_modules/.bin/mocha --require @babel/register\",\n \"build\": \"./node_modules/.bin/babel src --out-dir dist\",\n \"build-docs\": \"./node_modules/.bin/esdoc\",\n \"clean\": \"rm -rf ./node_modules ./dist\"\n },\n \"repository\": \"https://github.com/mileszim/webpurify\",\n \"keywords\": [\n \"webpurify\",\n \"api\"\n ],\n \"author\": \"Miles Zimmerman\",\n \"license\": \"MIT\",\n \"engines\": {\n \"node\": \"6.* || 8.* || >= 10.*\"\n },\n \"devDependencies\": {\n \"@babel/cli\": \"^7.1.2\",\n \"@babel/core\": \"^7.1.2\",\n \"@babel/preset-env\": \"^7.1.0\",\n \"@babel/register\": \"^7.0.0\",\n \"@babel/polyfill\": \"^7.0.0\",\n \"chai\": \"^4.2.0\",\n \"chai-as-promised\": \"^7.1.1\",\n \"esdoc\": \"^1.1.0\",\n \"esdoc-standard-plugin\": \"^1.0.0\",\n \"mocha\": \"^5.2.0\",\n \"nock\": \"^10.0.1\",\n \"sinon\": \"^7.0.0\"\n }\n}\n",
"longname": "/Users/miles/Projects/webpurify/package.json",
"name": "package.json",
"static": true,
Expand Down
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@
],
"author": "Miles Zimmerman",
"license": "MIT",
"engines": {
"node": "6.* || 8.* || >= 10.*"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
Expand Down

0 comments on commit 495d007

Please sign in to comment.