{
    "name": "http-api-client",
    "version": "0.1.8",
    "description": "An easy to use NodeJS HTTP API client library.",
    "main": "lib/http-api-client.js",
    "scripts": {
        "test": "grunt check"
    },
    "dependencies": {
        "promise": "^5.0.0"
    },
    "devDependencies": {
        "grunt": "*",
        "grunt-contrib-jshint": "0.9.2",
        "grunt-deployinator": "0.*",
        "grunt-jscs": "*"
    },
    "repository": {
        "type": "git",
        "url": "git://github.com/conde-nast-international/http-api-client.git"
    },
    "keywords": [
        "http",
        "api",
        "client"
    ],
    "author": "Condé Nast",
    "license": "MIT",
    "bugs": {
        "url": "https://github.com/conde-nast-international/http-api-client/issues"
    },
    "homepage": "https://github.com/conde-nast-international/http-api-client",
    "jshintConfig": {
        "bitwise": true,
        "curly": true,
        "camelcase": true,
        "eqeqeq": true,
        "freeze": true,
        "immed": true,
        "latedef": false,
        "newcap": true,
        "noarg": true,
        "forin": true,
        "sub": true,
        "undef": true,
        "unused": true,
        "noempty": true,
        "boss": false,
        "eqnull": true,
        "browser": true,
        "indent": 4,
        "maxcomplexity": 7,
        "maxstatements": 36,
        "maxparams": 5,
        "maxdepth": 3,
        "maxlen": 100,
        "trailing": true,
        "maxerr": 5,
        "globals": {
            "module": true,
            "require": true,
            "Buffer": true
        }
    }
}