{
  "name": "character-entities-legacy",
  "version": "1.1.2",
  "description": "HTML legacy character entity information",
  "license": "MIT",
  "keywords": [
    "html",
    "entity",
    "entities",
    "character",
    "reference",
    "name",
    "replacement"
  ],
  "repository": "wooorm/character-entities-legacy",
  "bugs": "https://github.com/wooorm/character-entities-legacy/issues",
  "author": "Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)",
  "contributors": [
    "Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)"
  ],
  "main": "index.json",
  "files": [
    "index.json"
  ],
  "dependencies": {},
  "devDependencies": {
    "bail": "^1.0.1",
    "browserify": "^16.0.0",
    "concat-stream": "^1.5.2",
    "esmangle": "^1.0.1",
    "prettier": "^1.12.0",
    "remark-cli": "^5.0.0",
    "remark-preset-wooorm": "^4.0.0",
    "tape": "^4.0.0",
    "xo": "^0.20.0"
  },
  "scripts": {
    "generate": "node build",
    "format": "remark . -qfo && prettier --write '**/*.js' && xo --fix",
    "build-bundle": "browserify index.json --bare -s characterEntitiesLegacy > character-entities-legacy.js",
    "build-mangle": "esmangle character-entities-legacy.js > character-entities-legacy.min.js",
    "build": "npm run build-bundle && npm run build-mangle",
    "test-api": "node test",
    "test": "npm run generate && npm run format && npm run build && npm run test-api"
  },
  "prettier": {
    "tabWidth": 2,
    "useTabs": false,
    "singleQuote": true,
    "bracketSpacing": false,
    "semi": false,
    "trailingComma": "none"
  },
  "xo": {
    "prettier": true,
    "esnext": false,
    "rules": {
      "no-var": "off",
      "prefer-arrow-callback": "off"
    },
    "ignores": [
      "character-entities-legacy.js"
    ]
  },
  "remarkConfig": {
    "plugins": [
      "preset-wooorm"
    ]
  }
}
