UNPKG

2.31 kBJSONView Raw
1{
2 "name": "html-react-parser",
3 "version": "1.2.4",
4 "description": "HTML to React parser.",
5 "author": "Mark <mark@remarkablemark.org>",
6 "main": "index.js",
7 "module": "index.mjs",
8 "scripts": {
9 "benchmark": "node benchmark",
10 "build": "rollup --config --failAfterWarnings",
11 "clean": "rimraf dist",
12 "lint": "eslint --ignore-path .gitignore --ignore-pattern /examples/ .",
13 "lint:dts": "dtslint .",
14 "lint:fix": "npm run lint -- --fix",
15 "prepublishOnly": "npm run lint && npm run lint:dts && npm run test:ci && npm run clean && npm run build",
16 "release": "standard-version --no-verify",
17 "test": "jest --coverage --testPathIgnorePatterns test/integration/",
18 "test:ci": "npm test -- --ci",
19 "test:integration": "npm run build && jest test/integration/",
20 "test:watch": "npm test -- --watch"
21 },
22 "repository": {
23 "type": "git",
24 "url": "https://github.com/remarkablemark/html-react-parser"
25 },
26 "bugs": {
27 "url": "https://github.com/remarkablemark/html-react-parser/issues"
28 },
29 "keywords": [
30 "html-react-parser",
31 "html",
32 "react",
33 "parser",
34 "dom"
35 ],
36 "dependencies": {
37 "html-dom-parser": "1.0.0",
38 "react-property": "1.0.1",
39 "style-to-js": "1.1.0"
40 },
41 "devDependencies": {
42 "@commitlint/cli": "^11.0.0",
43 "@commitlint/config-conventional": "^11.0.0",
44 "@rollup/plugin-commonjs": "^17.0.0",
45 "@rollup/plugin-node-resolve": "^11.0.0",
46 "@size-limit/preset-big-lib": "^4.9.1",
47 "@types/react": "^17.0.0",
48 "@typescript-eslint/parser": "^4.9.1",
49 "benchmark": "^2.1.4",
50 "dtslint": "^4.0.6",
51 "eslint": "^7.15.0",
52 "eslint-plugin-prettier": "^3.3.0",
53 "husky": "^4.3.6",
54 "jest": "^26.6.3",
55 "lint-staged": "^10.5.3",
56 "preact": "^10.5.7",
57 "prettier": "^2.2.1",
58 "react": "^17",
59 "react-dom": "^17",
60 "rimraf": "^3.0.2",
61 "rollup": "^2.34.2",
62 "rollup-plugin-terser": "^7.0.2",
63 "size-limit": "^4.9.1",
64 "standard-version": "^9.0.0",
65 "typescript": "^4.1.3"
66 },
67 "peerDependencies": {
68 "react": "^0.14 || ^15 || ^16 || ^17"
69 },
70 "files": [
71 "/dist",
72 "/lib",
73 "index.d.ts",
74 "index.mjs"
75 ],
76 "collective": {
77 "type": "opencollective",
78 "url": "https://opencollective.com/html-react-parser"
79 },
80 "license": "MIT"
81}