{
  "name": "lag",
  "version": "0.1.0",
  "description": "Lag helps with functional promises.",
  "main": "index.js",
  "scripts": {
    "test": "npm run lint && mocha test/ --reporter spec",
    "lint": "jshint index.js lib/",
    "commit": "npm run test && npm run build-standalone && git add . && git commit",
    "build-standalone": "node_modules/.bin/browserify index.js -o dist/lag.js",
    "publish-modules": "npm test && build/publish.js && npm publish"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/scottcorgan/lag.git"
  },
  "keywords": [
    "promise",
    "functional",
    "underscore",
    "lodash"
  ],
  "author": "Scott Corgan",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/scottcorgan/lag/issues"
  },
  "homepage": "https://github.com/scottcorgan/lag",
  "devDependencies": {
    "promise": "^4.0.0",
    "is-promise": "^1.0.0",
    "clone": "^0.1.11",
    "mocha": "^1.18.2",
    "expect.js": "^0.3.1",
    "browserify": "^3.33.0",
    "jshint": "^2.4.4",
    "mkdirp": "^0.3.5",
    "detective": "^3.1.0",
    "remove": "^0.1.5",
    "npm": "^1.4.6",
    "async": "^0.2.10"
  },
  "dependencies": {
    "promise": "^4.0.0",
    "is-promise": "^1.0.0",
    "as-array": "^0.1.2",
    "extend": "^1.2.1",
    "flat-arguments": "^0.3.0",
    "defaults": "^1.0.0",
    "zip-object": "^0.1.0"
  },
  "jshintConfig": {
    "expr": true,
    "curly": false,
    "eqeqeq": true,
    "immed": true,
    "latedef": false,
    "newcap": true,
    "noarg": true,
    "sub": true,
    "undef": true,
    "unused": false,
    "boss": true,
    "eqnull": true,
    "node": true,
    "laxbreak": true,
    "globals": {
      "require": true,
      "module": true,
      "exports": true,
      "it": true,
      "describe": true,
      "beforeEach": true,
      "afterEach": true,
      "chai": true,
      "Regex": true,
      "Promise": true
    }
  }
}
