{
  "name": "property-information",
  "version": "1.0.0",
  "description": "Information for HTML properties",
  "license": "MIT",
  "keywords": [
    "html",
    "property",
    "attribute",
    "information",
    "info"
  ],
  "files": [
    "index.js",
    "LICENSE"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/wooorm/property-information.git"
  },
  "author": "Titus Wormer <tituswormer@gmail.com>",
  "devDependencies": {
    "browserify": "^11.0.0",
    "eslint": "^1.0.0",
    "esmangle": "^1.0.0",
    "istanbul": "^0.3.0",
    "jscs": "^2.0.0",
    "jscs-jsdoc": "^1.0.0",
    "mdast": "^1.0.0",
    "mdast-comment-config": "^1.0.0",
    "mdast-github": "^1.0.0",
    "mdast-lint": "^1.0.0",
    "mdast-slug": "^2.0.0",
    "mdast-validate-links": "^1.1.1",
    "mdast-yaml-config": "^1.0.0",
    "tape": "^4.2.0"
  },
  "scripts": {
    "test-api": "node test.js",
    "test-coverage": "istanbul cover test.js",
    "test-travis": "npm run test-coverage",
    "test": "npm run test-api",
    "lint-api": "eslint .",
    "lint-style": "jscs --reporter inline .",
    "lint": "npm run lint-api && npm run lint-style",
    "make": "npm run lint && npm run test-coverage",
    "build-md": "mdast . LICENSE --output --quiet",
    "build-bundle": "browserify index.js --bare -s propertyInformation > property-information.js",
    "postbuild-bundle": "esmangle property-information.js > property-information.min.js",
    "build": "npm run build-md && npm run build-bundle"
  }
}
