{
  "name": "@creditkarma/async-scope",
  "version": "0.0.16",
  "description": "A thread local approximation built on async hooks, written in TypeScript",
  "main": "dist/main/index.js",
  "types": "dist/main/index.d.ts",
  "files": [
    "dist/main"
  ],
  "keywords": [
    "typescript",
    "async hooks",
    "async wrap",
    "thread storage",
    "k/v store",
    "node"
  ],
  "scripts": {
    "clean": "rimraf ./dist",
    "clean-all": "rimraf dist/ node_modules/ package-lock.json",
    "lint": "tslint --fix './src/**/*.ts'",
    "prebuild": "npm run clean",
    "build": "npm run lint && tsc",
    "watch": "tsc --watch",
    "pretest": "npm run build",
    "test": "npm run test:unit && npm run test:integration",
    "test:unit": "lab --timeout 15000 --verbose -l -S -P spec dist/tests/unit",
    "test:integration": "lab --timeout 15000 --verbose -l -S -P spec dist/tests/integration",
    "release:patch": "npm version patch && npm run release:publish",
    "release:minor": "npm version minor && npm run release:publish",
    "release:major": "npm version major && npm run release:publish",
    "release:publish": "git push --follow-tags"
  },
  "author": "Credit Karma",
  "license": "Apache-2.0",
  "repository": {
    "type": "git",
    "url": "https://github.com/creditkarma/async-scope"
  },
  "dependencies": {
    "@creditkarma/async-hooks": "0.0.8"
  },
  "devDependencies": {
    "@types/bluebird": "^3.5.20",
    "@types/code": "^4.0.3",
    "@types/lab": "^11.1.0",
    "@types/node": "^8.0.31",
    "@types/rimraf": "0.0.28",
    "bluebird": "^3.5.1",
    "code": "^4.1.0",
    "lab": "^14.2.0",
    "lerna": "^2.0.0",
    "rimraf": "^2.5.4",
    "tslint": "^5.6.0",
    "tslint-eslint-rules": "^4.1.1",
    "typescript": "^2.8.2"
  }
}
