-
Notifications
You must be signed in to change notification settings - Fork 106
/
package.json
65 lines (65 loc) · 1.86 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
{
"name": "suneditor-react",
"version": "3.6.1",
"description": "A React Component for Suneditor",
"repository": {
"type": "git",
"url": "https://github.com/mkhstar/suneditor-react"
},
"main": "dist/index.js",
"scripts": {
"build": "rm -rf ./dist && tsc",
"lint": "eslint src/.",
"test": "jest --verbose",
"test-cov": "jest --verbose --coverage",
"prepublishOnly": "yarn build",
"copy": "rm -rf ./build && tsc --outDir build && rm -rf ../suneditor-react-dom/src/build && cp -r build ../suneditor-react-dom/src && rm -rf ../suneditor-react-next/build && cp -r build ../suneditor-react-next"
},
"keywords": [
"editor",
"wysiwyg",
"suneditor",
"text-editor",
"word",
"react"
],
"author": "Kusi Musah Hussein",
"license": "MIT",
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.4.0",
"@types/node": "^18.15.11",
"@types/react": "^18.0.27",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"eslint": "^8.32.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"prettier": "^2.8.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"suneditor": "^2.44.10",
"ts-jest": "^29.0.5",
"typescript": "^5.0.4"
},
"peerDependencies": {
"react": ">= 16.8.0",
"react-dom": ">= 16.8.0",
"suneditor": "^2.44.10"
},
"browserslist": [
">0.2%",
"not ie <= 11",
"not op_mini all"
],
"dependencies": {}
}