forked from remarkablemark/html-react-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.77 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "html-react-parser",
"version": "4.2.0",
"description": "HTML to React parser.",
"author": "Mark <[email protected]>",
"main": "index.js",
"type": "module",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.js",
"require": "./index.js",
"default": "./index.js"
},
"./lib/*": {
"types": "./lib/*.d.ts",
"default": "./lib/*.js"
},
"./package.json": "./package.json"
},
"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": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage --testPathIgnorePatterns test/integration/",
"test:ci": "npm test -- --ci --colors",
"test:module": "node --test test/module/",
"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": "5.0.3",
"html-dom-parser": "4.0.0",
"react-property": "2.0.0",
"style-to-js": "1.1.3"
},
"devDependencies": {
"@commitlint/cli": "17.6.7",
"@commitlint/config-conventional": "17.6.7",
"@rollup/plugin-commonjs": "25.0.3",
"@rollup/plugin-node-resolve": "15.1.0",
"@size-limit/preset-big-lib": "8.2.6",
"@types/react": "18.2.15",
"@typescript-eslint/parser": "6.1.0",
"benchmark": "2.1.4",
"cross-env": "7.0.3",
"dtslint": "4.2.1",
"eslint": "8.45.0",
"eslint-plugin-prettier": "5.0.0",
"husky": "8.0.3",
"jest": "29.6.1",
"jest-environment-jsdom": "29.6.1",
"lint-staged": "13.2.3",
"pinst": "3.0.0",
"preact": "10.16.0",
"prettier": "3.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"rimraf": "5.0.1",
"rollup": "2.79.1",
"rollup-plugin-terser": "7.0.2",
"size-limit": "8.2.6",
"typescript": "5.1.6"
},
"peerDependencies": {
"react": "0.14 || 15 || 16 || 17 || 18"
},
"files": [
"/dist",
"/lib",
"index.d.ts"
],
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/html-react-parser"
},
"license": "MIT"
}