forked from remarkablemark/html-react-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.41 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "html-react-parser",
"version": "1.4.2",
"description": "HTML to React parser.",
"author": "Mark <[email protected]>",
"main": "index.js",
"module": "index.mjs",
"scripts": {
"benchmark": "node benchmark",
"build": "rollup --config --failAfterWarnings",
"clean": "rimraf dist",
"lint": "eslint --ignore-path .gitignore --ignore-pattern /examples/ .",
"lint:dts": "dtslint .",
"lint:fix": "npm run lint -- --fix",
"postinstall": "husky install",
"postpublish": "pinst --enable",
"prepublishOnly": "pinst --disable && npm run lint && npm run lint:dts && npm run test:ci && npm run clean && npm run build",
"size-limit": "size-limit",
"test": "jest --coverage --testPathIgnorePatterns test/integration/",
"test:ci": "npm test -- --ci",
"test:module": "node --experimental-modules test/module/index.mjs",
"test:integration": "npm run build && jest --env=jsdom test/integration/",
"test:watch": "npm test -- --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/remarkablemark/html-react-parser"
},
"bugs": {
"url": "https://github.com/remarkablemark/html-react-parser/issues"
},
"keywords": [
"html-react-parser",
"html",
"react",
"parser",
"dom"
],
"dependencies": {
"domhandler": "4.3.0",
"html-dom-parser": "1.0.4",
"react-property": "2.0.0",
"style-to-js": "1.1.0"
},
"devDependencies": {
"@commitlint/cli": "15.0.0",
"@commitlint/config-conventional": "15.0.0",
"@rollup/plugin-commonjs": "21.0.1",
"@rollup/plugin-node-resolve": "13.0.6",
"@size-limit/preset-big-lib": "7.0.4",
"@types/react": "17.0.37",
"@typescript-eslint/parser": "5.6.0",
"benchmark": "2.1.4",
"dtslint": "4.2.1",
"eslint": "8.4.1",
"eslint-plugin-prettier": "4.0.0",
"husky": "7.0.4",
"jest": "27.4.3",
"lint-staged": "12.1.2",
"pinst": "2.1.6",
"preact": "10.6.2",
"prettier": "2.5.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"rimraf": "3.0.2",
"rollup": "2.60.2",
"rollup-plugin-terser": "7.0.2",
"size-limit": "7.0.4",
"typescript": "4.5.2"
},
"peerDependencies": {
"react": "0.14 || 15 || 16 || 17"
},
"files": [
"/dist",
"/lib",
"index.d.ts",
"index.mjs"
],
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/html-react-parser"
},
"license": "MIT"
}