{
  "name": "aureooms-js-lifo",
  "description": "Last In First Out data structures for JavaScript",
  "version": "3.0.1",
  "author": "Aurélien Ooms <aurelien.ooms@gmail.com>",
  "ava": {
    "require": [
      "babel-polyfill",
      "babel-register"
    ]
  },
  "babel": {
    "presets": [
      "latest"
    ],
    "env": {
      "development": {
        "sourceMaps": "inline"
      }
    }
  },
  "bugs": {
    "url": "https://github.com/aureooms/js-lifo/issues"
  },
  "dependencies": {},
  "devDependencies": {
    "aureooms-js-array": "^3.1.0",
    "aureooms-js-functools": "^2.0.3",
    "aureooms-js-itertools": "^3.1.1",
    "ava": "^0.17.0",
    "babel-cli": "^6.18.0",
    "babel-polyfill": "^6.20.0",
    "babel-preset-latest": "^6.16.0",
    "codeclimate-test-reporter": "^0.4.0",
    "coveralls": "^2.11.15",
    "esdoc": "^0.4.8",
    "nyc": "^10.0.0"
  },
  "homepage": "https://aureooms.github.io/js-lifo",
  "keywords": [
    "data",
    "javascript",
    "js",
    "lifo",
    "stack",
    "structures"
  ],
  "license": "AGPL-3.0",
  "main": "lib/index.js",
  "repository": {
    "url": "https://github.com/aureooms/js-lifo.git",
    "type": "git"
  },
  "scripts": {
    "build": "babel src -d lib",
    "cover": "nyc --reporter=lcov npm test",
    "prepublish": "npm run build",
    "test": "ava ./test/src --concurrency 8"
  }
}
