-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.82 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.82 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
{
"name": "wangeditor-for-react",
"version": "1.5.6",
"description": "Wangeditor component for React.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:es": "babel es6 -d lib",
"build": "tsc --build",
"view": "echo $npm_package_version",
"publish": "bash ./script/publish.sh"
},
"keywords": [
"React",
"wangEditor",
"wangeditor-for-react",
"wangeditor"
],
"engines": {
"node": ">10 <13",
"npm": "~6.14.14",
"yarn": "~1.17.3"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 11"
],
"lint-staged": {
"*.ts?(x)": [
"eslint --fix",
"prettier --write"
],
"*.md": [
"lint-md --fix"
]
},
"files": [
"lib",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"author": "hi!dong",
"repository": {
"type": "git",
"url": "https://github.com/dongggcom/wangeditor-for-react.git"
},
"bugs": {
"url": "https://github.com/dongggcom/wangeditor-for-react/issues"
},
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@lint-md/cli": "^0.1.5",
"@lint-md/core": "^0.2.1",
"@types/node": "^15.12.5",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"commitizen": "^4.2.4",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.3.2",
"typescript": "^4.3.5"
},
"dependencies": {
"wangeditor": "^4.7.12"
},
"peerDependencies": {
"react": "^17.0.2"
}
}