html-entities-decode
Version:
Fast function for decoding HTML entities.
55 lines (54 loc) • 1.41 kB
JSON
{
"name": "html-entities-decode",
"description": "Fast function for decoding HTML entities.",
"version": "1.0.2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean:dist": "rimraf dist",
"clean:coverage": "rimraf coverage .nyc_output",
"clean": "npm run clean:dist && npm run clean:coverage",
"compile": "tsc --skipLibCheck && tstei",
"compile:watch": "tsc --skipLibCheck --watch",
"test": "ava",
"test:watch": "ava --watch",
"coverage": "nyc --reporter=html ava",
"report": "nyc report",
"report:html": "open coverage/index.html",
"prepublishOnly": "npm run clean && npm run compile && npm run coverage"
},
"ava": {
"files": [
"test/index.js"
]
},
"bugs": {
"url": "https://github.com/fabiospampinato/html-entities-decode/issues"
},
"license": "MIT",
"author": {
"name": "Fabio Spampinato",
"email": "spampinabio@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/fabiospampinato/html-entities-decode.git"
},
"keywords": [
"html",
"entities",
"entity",
"decode",
"decoding"
],
"dependencies": {},
"devDependencies": {
"@types/node": "^12.7.2",
"ava": "^2.3.0",
"ava-spec": "^1.1.1",
"nyc": "^14.1.1",
"rimraf": "^3.0.0",
"typescript": "^3.5.3",
"typescript-transform-export-interop": "^1.0.2"
}
}