-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.93 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.93 KB
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
100
{
"name": "react-html-string",
"version": "0.1.1",
"module": "./dist/index.esm.js",
"main": "./dist/index.cjs.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"license": "MIT",
"scripts": {
"dev": "tsup --watch",
"test": "jest",
"test:watch": "jest --watch",
"build": "tsup",
"prerelease": "npm run build",
"release": "np",
"eslint:check": "eslint . --ext .js,.jsx,.ts,.tsx --ignore-path .gitignore --report-unused-disable-directives --max-warnings 0",
"eslint:fix": "eslint . --fix --ext .js,.jsx,.ts,.tsx --ignore-path .gitignore --report-unused-disable-directives --max-warnings 0",
"prettier:check": "prettier . --check --ignore-unknown --ignore-path .gitignore",
"prettier:fix": "prettier . --write --ignore-unknown --ignore-path .gitignore",
"commit": "cz",
"prepare": "is-ci || husky install"
},
"publishConfig": {
"access": "public"
},
"author": {
"name": "Mo'men Sherif",
"email": "momensherif.2019@gmail.com",
"url": "https://github.com/MomenSherif"
},
"homepage": "https://github.com/MomenSherif/react-html-string",
"repository": {
"type": "git",
"url": "https://github.com/MomenSherif/react-html-string"
},
"bugs": {
"url": "https://github.com/MomenSherif/react-html-string/issues",
"email": "momensherif.2019@gmail.com"
},
"keywords": [
"react",
"html",
"htmlparser",
"react html string",
"inner html",
"dangerouslySetInnerHTML"
],
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.0.0",
"@types/react": "^18.0.18",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"commitizen": "^4.2.4",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "^0.15.7",
"esbuild-jest": "^0.5.0",
"eslint": "^8.7.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-jest-dom": "^4.0.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-testing-library": "^5.0.4",
"husky": "^7.0.4",
"is-ci": "^3.0.1",
"jest": "^29.0.2",
"jest-environment-jsdom": "^29.0.2",
"lint-staged": "^12.3.1",
"np": "^7.6.2",
"prettier": "2.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsup": "^6.2.3",
"typescript": "^4.8.2"
},
"dependencies": {
"html-react-parser": "^3.0.4"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}