{
  "name": "nedb-async-await",
  "version": "0.1.2",
  "description": "Adds async/await to NeDB",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "scripts": {
    "precommit": "lint-staged",
    "prepublish": "npm test",
    "clean": "rm -rf dist",
    "predev": "npm run clean",
    "dev": "tsc-watch -p ./tsconfig.json --onSuccess \"node ./dist/index.js\" --onFailure \"echo Beep! Compilation Failed\"",
    "prebuild": "npm run clean",
    "build": "tsc",
    "postbuild": "npm run uglify",
    "uglify": "uglifyjs -c -m -o ./dist/index.js -- ./dist/index.js",
    "lint": "tslint '{src,test,mocks}/**/*.{ts,tsx}' --project ./tsconfig.json",
    "pretest": "npm run build",
    "test": "nyc mocha"
  },
  "keywords": [
    "nedb",
    "promise",
    "async",
    "await"
  ],
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com:MarkRabey/nedb-async-await.git"
  },
  "author": {
    "name": "Mark Rabey",
    "email": "mark@markrabey.com"
  },
  "bugs": {
    "url": "https://github.com/MarkRabey/nedb-async-await/issues"
  },
  "license": "SEE LICENSE",
  "lint-staged": {
    "{src,test,mocks}/**/*.{js,ts,tsx,json,css,scss,md}": [
      "prettier --config ./.prettierrc --write",
      "git add"
    ],
    "{src,mocks}/**/*.{js,ts,tsx}": [
      "tslint --project ./tsconfig.json --fix",
      "git add"
    ]
  },
  "nyc": {
    "sourceMap": true,
    "instrument": true
  },
  "devDependencies": {
    "@types/chai": "^4.1.3",
    "@types/mocha": "^5.2.0",
    "@types/node": "^9.6.7",
    "chai": "^4.1.2",
    "chai-as-promised": "^7.1.1",
    "co": "^4.6.0",
    "husky": "^0.14.3",
    "lint-staged": "^7.0.5",
    "mocha": "^5.1.1",
    "nyc": "^11.7.1",
    "prettier": "^1.12.1",
    "ts-node": "^6.0.1",
    "tsc-watch": "^1.0.21",
    "tslint": "^5.9.1",
    "typescript": "^2.8.3",
    "uglify-js": "^3.3.22"
  },
  "dependencies": {
    "@types/nedb": "^1.8.5",
    "nedb": "^1.8.0",
    "thenify": "^3.3.0"
  }
}
