{
  "name": "@bottender/jfs",
  "version": "0.4.1",
  "main": "./Store",
  "types": "./index.d.ts",
  "description": "A simple JSON file store",
  "author": "Markus Kohlhase <mail@markus-kohlhase.de>",
  "homepage": "http://github.com/bottenderjs/json-file-store",
  "bugs": "http://github.com/bottenderjs/json-file-store/issues",
  "license": "MIT",
  "engines": {
    "node": ">=12"
  },
  "dependencies": {
    "async": "^3.2.1",
    "clone": "^2.1.2",
    "mkdirp": "^1.0.4",
    "uuid": "^8.3.2"
  },
  "devDependencies": {
    "babel-cli": "^6.26.0",
    "babel-preset-es2015": "^6.24.1",
    "chai": "^3.5.0",
    "coveralls": "^2.11.14",
    "istanbul": "^0.4.5",
    "mocha": "^3.1.2"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/bottenderjs/json-file-store.git"
  },
  "scripts": {
    "lint": "echo \"WARN: no linting process specified\"",
    "build": "babel Store.es6.js -o Store.js && babel Store.spec.es6.js -o Store.spec.js",
    "prepublish": "npm run build",
    "test": "npm run lint && npm run build && ./node_modules/.bin/mocha --reporter spec *.spec.js",
    "coveralls": "istanbul cover ./node_modules/.bin/_mocha --report lcovonly && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
  }
}
