{
  "name": "jintrospector",
  "version": "1.0.0",
  "description": "Javascript instrumentation library",
  "keywords": [
    "javascript",
    "instrumentation"
  ],
  "author": "Manuel Alvarez Alvarez <manuel.alvarez.alvarez@gmail.com>",
  "repository": {
    "type": "git",
    "url": "https://github.com/manuel-alvarez-alvarez/jintrospector.git"
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/manuel-alvarez-alvarez/jintrospector/issues"
  },
  "homepage": "https://github.com/manuel-alvarez-alvarez/jintrospector",
  "main": "dist/jintrospector.cjs.js",
  "module": "dist/jintrospector.esm.js",
  "browser": "dist/jintrospector.umd.js",
  "devDependencies": {
    "@babel/core": "^7.1.0",
    "@babel/preset-env": "^7.1.0",
    "babel-core": "^7.0.0-bridge.0",
    "babel-jest": "^23.6.0",
    "commitizen": "^3.0.4",
    "coveralls": "^3.0.2",
    "cz-conventional-changelog": "^2.1.0",
    "eslint": "^5.9.0",
    "eslint-config-prettier": "^3.3.0",
    "eslint-plugin-prettier": "^3.0.0",
    "husky": "^1.1.4",
    "jest": "^23.6.0",
    "lint-staged": "^8.0.4",
    "prettier": "^1.15.2",
    "rimraf": "^2.6.2",
    "rollup": "^0.67.1",
    "rollup-plugin-babel": "^4.0.3",
    "rollup-plugin-commonjs": "^9.2.0",
    "rollup-plugin-node-resolve": "^3.4.0",
    "semantic-release": "^15.12.0",
    "travis-deploy-once": "^5.0.9",
    "validate-commit-msg": "^2.14.0"
  },
  "scripts": {
    "prebuild": "rimraf dist",
    "lint": "eslint . --fix",
    "prettify": "prettier --write \"**/*.json\"",
    "build": "rollup -c",
    "build:watch": "rollup -c -w",
    "test": "jest",
    "test:watch": "jest --watchAll",
    "test:prod": "npm run lint && npm run test --coverage --no-cache",
    "report-coverage": "cat ./coverage/lcov.info | coveralls",
    "commit": "git-cz",
    "semantic-release": "semantic-release",
    "travis-deploy-once": "travis-deploy-once"
  },
  "lint-staged": {
    "*.js": [
      "eslint --fix",
      "git add"
    ]
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "config": {
    "commitizen": {
      "path": "node_modules/cz-conventional-changelog"
    },
    "validate-commit-msg": {
      "types": "conventional-commit-types",
      "helpMessage": "Use \"npm run commit\" instead, we use conventional-changelog format :) (https://github.com/commitizen/cz-cli)"
    }
  },
  "jest": {
    "coveragePathIgnorePatterns": [
      "/node_modules/",
      "/test/"
    ],
    "coverageThreshold": {
      "global": {
        "branches": 90,
        "functions": 95,
        "lines": 95,
        "statements": 95
      }
    },
    "collectCoverage": true
  },
  "files": [
    "dist"
  ]
}
