{
  "name": "express-json-file-crud",
  "version": "0.0.7",
  "description": "An Express module that lets you store arbitrary objects in JSON files and perform CRUD operations on them.",
  "repository": {
    "type": "git",
    "url": "https://github.com/fchristl/express-json-file-crud"
  },
  "main": "dist/index.js",
  "scripts": {
    "build": "./node_modules/.bin/tsc",
    "start": "node example.js",
    "build-and-start": "npm run build && npm start",
    "test": "mocha -r ts-node/register \"src/**/*.test.ts\"",
    "prepublish": "npm run build"
  },
  "keywords": [
    "express",
    "crud",
    "json"
  ],
  "author": "Felix Christl",
  "license": "BSD-2-Clause",
  "dependencies": {
    "express": "^4.17.1"
  },
  "devDependencies": {
    "@types/chai": "^4.2.12",
    "@types/express": "^4.17.7",
    "@types/mocha": "^5.2.7",
    "@types/node": "^12.12.53",
    "@types/supertest": "^2.0.10",
    "chai": "^4.2.0",
    "mocha": "^6.2.3",
    "supertest": "^4.0.2",
    "ts-node": "^8.10.2",
    "typescript": "^3.9.7"
  }
}
