forked from jodit/jodit-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.67 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
{
"name": "jodit-react",
"version": "1.0.31",
"description": "Jodit is awesome and usefully wysiwyg editor with filebrowser",
"main": "build/jodit-react.js",
"author": "Chupurnov <[email protected]> (https://xdsoft.net/)s",
"keywords": [
"react",
"jodit",
"html",
"text",
"editor",
"wysisyg",
"rich editor",
"rich text editor",
"rte"
],
"dependencies": {
"@types/react": "^16.9.16",
"jodit": "^3.3.2"
},
"peerDependencies": {
"react": "~0.14 || ^15.0.0 || ^16.0.0",
"react-dom": "~0.14 || ^15.0.0 || ^16.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-loader": "^7.1.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.11",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"style-loader": "^0.20.3",
"webpack": "^3.12.0",
"webpack-dev-server": "^2.11.5"
},
"scripts": {
"newversion": "npm update && rm -rf build/ && npm run build && npm version patch --no-git-tag-version && npm run github && npm publish ./",
"demo": "cd examples && webpack-dev-server --port 4000 --hot --inline",
"build": "webpack",
"github": "git add --all && git commit -m \"New version $npm_package_version. Read more https://github.com/xdan/jodit/releases/tag/$npm_package_version \" && git tag $npm_package_version && git push --tags origin HEAD:master"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jodit/jodit-react.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/jodit/jodit-react/issues"
},
"homepage": "https://xdsoft.net/jodit/"
}