html-react-parser
Version:
An HTML to React parser.
74 lines (73 loc) • 2.02 kB
JSON
{
"name": "html-react-parser",
"version": "0.7.0",
"description": "An HTML to React parser.",
"author": "Mark <mark@remarkablemark.org>",
"main": "index.js",
"scripts": {
"benchmark": "node benchmark",
"build": "npm run clean && npm run build:min && npm run build:unmin",
"build:min": "cross-env NODE_ENV=production webpack -o dist/html-react-parser.min.js",
"build:unmin": "cross-env NODE_ENV=development webpack -o dist/html-react-parser.js",
"clean": "rimraf dist",
"cover": "istanbul cover _mocha -- -R spec \"test/**/*\"",
"coveralls": "cat coverage/lcov.info | coveralls",
"lint": "eslint --ignore-path .gitignore .",
"lint:fix": "npm run lint -- --fix",
"dtslint": "dtslint .",
"prepublishOnly": "npm run build",
"release": "standard-version --no-verify",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/remarkablemark/html-react-parser"
},
"bugs": {
"url": "https://github.com/remarkablemark/html-react-parser/issues"
},
"keywords": [
"html",
"dom",
"react",
"parser",
"converter"
],
"dependencies": {
"@types/domhandler": "2.4.1",
"html-dom-parser": "0.2.1",
"react-dom-core": "0.0.4",
"style-to-object": "0.2.2"
},
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"@types/react": "16.8.8",
"benchmark": "2.1.4",
"coveralls": "^3.0.2",
"cross-env": "5.2.0",
"dtslint": "0.5.5",
"eslint": "^5.10.0",
"eslint-plugin-prettier": "^3.0.0",
"husky": "^1.3.0",
"istanbul": "^0.4.5",
"lint-staged": "^8.1.0",
"mocha": "^5.2.0",
"prettier": "^1.15.3",
"react": "^16",
"react-dom": "^16",
"rimraf": "2.6.3",
"standard-version": "^4.4.0",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2"
},
"peerDependencies": {
"react": "^0.14 || ^15 || ^16"
},
"files": [
"dist",
"lib",
"index.d.ts"
],
"license": "MIT"
}