update deps // remove qs dep and use built in querystring module since we are…

update deps // remove qs dep and use built in querystring module since we are not doing anything special
parent 7a15c707
'use strict';
var request = require('request')
, qs = require('qs');
, qs = require('querystring');
var slice = Array.prototype.slice;
......
......@@ -3,7 +3,12 @@
"version": "1.0.0",
"description": "Fullcontact API bindings",
"main": "index.js",
"keywords": ["fullcontact", "api", "full", "contact"],
"keywords": [
"fullcontact",
"api",
"full",
"contact"
],
"scripts": {
"test": "NODE_ENV=testing ./node_modules/.bin/mocha $(find test -name '*.test.js')",
"test-travis": "API_KEY=506d9c8a7aafae5a NODE_ENV=testing ./node_modules/.bin/mocha $(find test -name '*.test.js')"
......@@ -15,12 +20,11 @@
"author": "Arnout Kazemier <opensource@observe.it>",
"license": "MIT",
"dependencies": {
"request": "2.x.x",
"qs": "2.x.x"
"request": "2.x.x"
},
"devDependencies": {
"mocha": "2.x.x",
"chai": "2.x.x",
"mocha": "3.x.x",
"chai": "3.x.x",
"pre-commit": "1.x.x"
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment