{ "name": "character-entities", "version": "1.2.1", "description": "HTML character entity information", "license": "MIT", "keywords": [ "html", "entity", "entities", "character", "reference", "name", "replacement" ], "repository": "https://github.com/wooorm/character-entities", "bugs": "https://github.com/wooorm/character-entities/issues", "author": "Titus Wormer (http://wooorm.com)", "contributors": [ "Titus Wormer (http://wooorm.com)" ], "main": "index.json", "files": [ "index.json" ], "dependencies": {}, "devDependencies": { "bail": "^1.0.1", "browserify": "^14.0.0", "concat-stream": "^1.5.2", "esmangle": "^1.0.1", "remark-cli": "^3.0.0", "remark-preset-wooorm": "^3.0.0", "tape": "^4.0.0", "xo": "^0.18.0" }, "scripts": { "build-md": "remark . -qfo", "build-generate": "node build", "build-bundle": "browserify index.json --bare -s characterEntities > character-entities.js", "build-mangle": "esmangle character-entities.js > character-entities.min.js", "build": "npm run build-md && npm run build-generate && npm run build-bundle && npm run build-mangle", "lint": "xo", "test-api": "node test", "test": "npm run build && npm run lint && npm run test-api" }, "xo": { "space": true, "esnext": false, "ignores": [ "character-entities.js" ] }, "remarkConfig": { "plugins": ["preset-wooorm"] } }