{
  "name": "react-html-attributes",
  "version": "1.4.6",
  "description": "A react supported html attributes store keyed by their tags",
  "main": "dist/index.js",
  "scripts": {
    "commit": "git-cz",
    "prebuild": "rimraf dist",
    "build": "npm-run-all --parallel build:*",
    "build:main": "babel --copy-files --out-dir dist --ignore *.test.*,*.build.js, src",
    "build:umd": "webpack --output-filename index.umd.js",
    "build:umd.min": "webpack --output-filename index.umd.min.js -p",
    "test": "cross-env NODE_ENV=test nyc mocha",
    "report-coverage": "cat ./coverage/lcov.info | codecov",
    "watch:test": "mocha --watch",
    "lint": "eslint src --fix",
    "validate": "npm-run-all --parallel test lint build",
    "release": "semantic-release pre && npm publish && semantic-release post",
    "compile-build-script": "babel src/build-json.build.js --out-file build-json-compiled.js",
    "update-json-files": "npm run compile-build-script && node build-json-compiled.js"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/jackyho112/react-html-attributes"
  },
  "keywords": [
    "html",
    "react",
    "attributes"
  ],
  "files": [
    "dist"
  ],
  "author": "Jacky Ho",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/jackyho112/react-html-attributes/issues"
  },
  "homepage": "https://github.com/jackyho112/react-html-attributes#readme",
  "dependencies": {
    "html-element-attributes": "^1.0.0"
  },
  "devDependencies": {
    "@bubltechnology/customizable-commit-analyzer": "1.0.2-0",
    "babel-cli": "6.11.4",
    "babel-loader": "6.2.4",
    "babel-plugin-istanbul": "1.0.3",
    "babel-preset-es2015": "6.9.0",
    "babel-register": "6.11.6",
    "bail": "1.0.0",
    "chai": "3.5.0",
    "codecov": "2.1.0",
    "commitizen": "2.9.6",
    "cross-env": "2.0.0",
    "cz-conventional-changelog": "2.0.0",
    "eslint": "3.19.0",
    "eslint-config-airbnb": "14.1.0",
    "eslint-plugin-import": "2.2.0",
    "eslint-plugin-jsx-a11y": "4.0.0",
    "eslint-plugin-react": "^6.9.0",
    "eslint-cli": "1.1.0",
    "ghooks": "1.3.2",
    "jsdom": "9.12.0",
    "json-loader": "0.5.4",
    "lodash": "4.17.4",
    "mocha": "3.0.0",
    "npm-run-all": "2.3.0",
    "nyc": "7.1.0",
    "rimraf": "2.5.4",
    "semantic-release": "^6.3.2",
    "validate-commit-msg": "2.12.1",
    "webpack": "1.13.1",
    "html-tags": "^2.0.0",
    "svg-tags": "^1.0.0"
  },
  "nyc": {
    "all": true,
    "check-coverage": true,
    "branches": 100,
    "function": 100,
    "lines": 100,
    "statements": 100,
    "reporter": [
      "text",
      "lcov"
    ],
    "include": [
      "src"
    ],
    "sourceMap": false,
    "instrument": false,
    "require": [
      "babel-register"
    ]
  },
  "babel": {
    "presets": [
      "es2015"
    ],
    "env": {
      "test": {
        "plugins": [
          "istanbul"
        ]
      }
    }
  },
  "release": {
    "analyzeCommits": "@bubltechnology/customizable-commit-analyzer"
  }
}
