{
  "name": "hawkly",
  "version": "0.5.10",
  "description": "An OpenTracing compatible tracer for hawkly.io",
  "main": "lib/main/index.js",
  "typings": "lib/main/index.d.ts",
  "module": "lib/module/index.js",
  "repository": "https://github.com/hawkly/hawkly-tracer-javascript",
  "author": "Owen Kelly <owen@owenkelly.com.au>",
  "license": "MIT",
  "scripts": {
    "info": "npm-scripts-info",
    "build": "trash lib && tsc -p tsconfig.json && tsc -p config/tsconfig.module.json",
    "lint": "tslint src/**/*.ts",
    "unit": "yarn build && nyc ava",
    "check-coverage": "nyc check-coverage --lines 100 --functions 100 --branches 100",
    "test": "yarn lint && yarn unit && yarn check-coverage",
    "watch": "trash lib && multiview [yarn watch:build] [yarn watch:unit]",
    "watch:build": "tsc -p tsconfig.json -w",
    "watch:unit": "tsc -p tsconfig.json && ava --watch --verbose",
    "cov": "yarn unit && yarn html-coverage && opn coverage/index.html",
    "html-coverage": "nyc report --reporter=html",
    "send-coverage": "nyc report --reporter=lcov > coverage.lcov && codecov",
    "docs": "typedoc src/index.ts --excludePrivate --mode file --theme minimal --out lib/docs && opn lib/docs/index.html",
    "docs:json": "typedoc --mode file --json lib/docs/typedoc.json src/index.ts",
    "release": "yarn run build && standard-version"
  },
  "scripts-info": {
    "info": "Display information about the scripts",
    "build": "(Trash and re)build the library",
    "lint": "Lint all typescript source files",
    "unit": "Run unit tests",
    "test": "Lint and test the library",
    "watch": "Watch source files, rebuild library on changes, rerun relevant tests",
    "watch:build": "Watch source files, rebuild library on changes",
    "watch:unit": "Watch the build, rerun relevant tests on changes",
    "cov": "Run tests, generate the HTML coverage report, and open it in a browser",
    "html-coverage": "Output HTML test coverage report",
    "send-coverage": "Output lcov test coverage report and send it to codecov",
    "docs": "Generate API documentation and open it in a browser",
    "docs:json": "Generate API documentation in typedoc JSON format",
    "release": "Bump package.json version, update CHANGELOG.md, tag a release"
  },
  "engines": {
    "node": ">=4"
  },
  "devDependencies": {
    "@types/node": "^7.0.5",
    "ava": "^0.18.2",
    "codecov": "^1.0.1",
    "npm-scripts-info": "^0.3.6",
    "nyc": "^10.1.2",
    "opentracing": "^0.13.0",
    "opn-cli": "^3.1.0",
    "sinon": "^1.17.7",
    "standard-version": "^4.0.0",
    "trash-cli": "^1.4.0",
    "tslib": "^1.6.0",
    "tslint": "^4.5.1",
    "tslint-config-standard": "^4.0.0",
    "tslint-microsoft-contrib": "^4.0.0",
    "typedoc": "^0.5.7",
    "typescript": "^2.2.1"
  },
  "keywords": [
    "async",
    "ava",
    "await",
    "boilerplate",
    "conventional-changelog",
    "ES6",
    "ES7",
    "library",
    "javascript-modules",
    "node",
    "nyc",
    "rollup",
    "starter",
    "template",
    "tree-shaking",
    "tslint",
    "typedoc",
    "typescript",
    "typings"
  ],
  "nyc": {
    "exclude": [
      "**/*.spec.js"
    ]
  },
  "ava": {
    "files": [
      "lib/main/**/*.spec.js"
    ],
    "source": [
      "lib/main/**/*"
    ]
  },
  "dependencies": {
    "opentracing": "^0.13.0"
  }
}
