{
  "name": "s3fs",
  "version": "2.5.0",
  "description": "Implementation of Node.JS FS interface using Amazon Simple Storage Service (S3).",
  "keywords": [
    "s3fs",
    "amazon s3",
    "aws s3",
    "fs",
    "file system",
    "simple storage service",
    "amazon"
  ],
  "homepage": "http://github.com/RiptideElements/s3fs",
  "repository": {
    "type": "git",
    "url": "git://github.com/RiptideElements/s3fs.git"
  },
  "bugs": {
    "url": "http://github.com/RiptideElements/s3fs/issues"
  },
  "author": {
    "name": "David Pate",
    "email": "davidtpate@gmail.com",
    "url": "https://github.com/DavidTPate"
  },
  "contributors": [
    {
      "name": "Jhorlin De Armas",
      "email": "Jhorlin@gmail.com",
      "url": "https://github.com/Jhorlin"
    }
  ],
  "license": "MIT",
  "main": "index.js",
  "dependencies": {
    "aws-sdk": "~2.5.2",
    "bluebird": "~3.4.1",
    "extend": "~3.x"
  },
  "devDependencies": {
    "buddy.js": "~0.x",
    "chai": "~3.x",
    "chai-as-promised": "~5.3.0",
    "dirty-chai": "~1.2.2",
    "eslint": "~3.3.1",
    "istanbul": "~0.4.5",
    "jscs": "~3.0.7",
    "jsinspect": "~0.x",
    "mocha": "~3.0.2",
    "nsp": "~2.6.1",
    "through2": "~2.x"
  },
  "scripts": {
    "lint": "eslint . && jscs . && jsinspect . && buddy --detect-objects index.js ./lib",
    "security": "nsp check",
    "cover": "istanbul cover _mocha -- --check-leaks --recursive --timeout=25000 test && istanbul check-coverage --statements 80.95 --branches 76.56 --functions 74.3 --lines 80.95",
    "test": "mocha --check-leaks --recursive --timeout=25000 test",
    "test-ci": "npm run lint && npm run security && npm run cover"
  }
}
