0
mirror of https://github.com/valentineus/iii-client.git synced 2025-04-29 01:51:24 +03:00

Add support for all versions of NodeJS

This commit is contained in:
Valentin Popov 2017-10-09 17:59:52 +04:00
parent a00f5aa64f
commit 73bdca9b21
2 changed files with 4 additions and 0 deletions

View File

@ -42,5 +42,8 @@
"build": "npm run build-browser && npm run build-standalone", "build": "npm run build-browser && npm run build-standalone",
"test": "mocha src/test.js --compilers js:babel-core/register", "test": "mocha src/test.js --compilers js:babel-core/register",
"check": "eslint ./src/index.js" "check": "eslint ./src/index.js"
},
"dependencies": {
"safe-buffer": "^5.1.1"
} }
} }

View File

@ -1,3 +1,4 @@
import { Buffer } from 'safe-buffer';
import http from 'http'; import http from 'http';
/** /**