{
  "name": "delta-detect-links",
  "version": "1.0.2",
  "description": "Detect links in a delta object.",
  "main": "./dist/detectLinks.cjs.js",
  "scripts": {
    "build": "BABEL_ENV=build rollup -c rollup.config.js",
    "test:unit": "BABEL_ENV=test ava 'test/**/*Spec.js'",
    "lint": "eslint .",
    "pretest": "npm run lint",
    "test": "nyc npm run test:unit",
    "prepublish": "npm run build"
  },
  "author": "Mathias Schreck <schreck.mathias@gmail.com>",
  "license": "MIT",
  "files": [ "README.md", "LICENSE", "dist/" ],
  "keywords": [
    "delta",
    "rich-text",
    "quill",
    "detect",
    "link"
  ],
  "devDependencies": {
    "ava": "0.16.0",
    "babel-preset-es2015": "6.18.0",
    "babel-preset-es2015-rollup": "1.2.0",
    "babel-register": "6.18.0",
    "eslint": "3.9.1",
    "eslint-config-holidaycheck": "0.10.0",
    "nyc": "8.4.0",
    "rollup": "0.36.3",
    "rollup-plugin-babel": "2.6.1",
    "rollup-plugin-commonjs": "5.0.5",
    "rollup-plugin-node-resolve": "2.0.0"
  },
  "ava": {
    "require": "babel-register",
    "babel": {
      "babelrc": true
    }
  },
  "nyc": {
    "lines": 100,
    "statements": 100,
    "functions": 100,
    "branches": 100,
    "include": [
      "lib/**/*.js"
    ],
    "reporter": [
      "lcov",
      "text-summary"
    ],
    "cache": true,
    "all": true,
    "check-coverage": true
  },
  "dependencies": {
    "linkify-it": "2.0.2",
    "rich-text": "3.1.0",
    "tlds": "1.169.0"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/holidaycheck/delta-detect-links.git"
  }
}
