This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
forked from ckeditor/ckeditor4-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.29 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
{
"name": "ckeditor4-react",
"version": "1.0.0",
"description": "Official React component for CKEditor 4 – the best browser-based rich text editor.",
"license": "(GPL-2.0-or-later OR LGPL-2.1 OR MPL-1.1)",
"main": "dist/ckeditor.js",
"files": [
"dist/",
"sample/"
],
"scripts": {
"build": "webpack --mode production",
"develop": "webpack --mode development --watch",
"lint": "eslint \"src/**/*.js?(x)\" \"tests/**/*.jsx\"",
"pretest": "npm run lint",
"test": "karma start",
"prepublishOnly": "npm run build",
"bump": "node ./scripts/bump.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ckeditor/ckeditor4-react.git"
},
"keywords": [
"wysiwyg",
"rich text",
"editor",
"html",
"contentEditable",
"editing",
"react",
"react-component",
"ckeditor",
"ckeditor4",
"ckeditor 4"
],
"author": "CKSource (http://cksource.com/)",
"bugs": {
"url": "https://github.com/ckeditor/ckeditor4-react/issues"
},
"homepage": "https://github.com/ckeditor/ckeditor4-react#readme",
"peerDependencies": {
"react": "^16.0.0",
"ckeditor": "^4.12.1"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.4",
"chai": "^4.2.0",
"ckeditor": "^4.12.1",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"eslint": "^5.7.0",
"eslint-config-ckeditor5": "^1.0.8",
"eslint-plugin-react": "^7.11.1",
"istanbul-instrumenter-loader": "^3.0.1",
"karma": "^4.1.0",
"karma-browserstack-launcher": "^1.4.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sinon": "^1.0.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.5",
"mocha": "^6.1.4",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-router-dom": "^5.0.0",
"shelljs": "^0.8.3",
"sinon": "^7.3.2",
"sinon-chai": "^3.2.0",
"terser-webpack-plugin": "^1.1.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"load-script": "^1.0.0",
"prop-types": "^15.6.2"
}
}