-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.56 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
{
"name": "ckeditor5-omi",
"version": "0.0.2",
"main": "src/ckeditor.js",
"description": "Official Omi component for CKEditor 5 – the best browser-based rich text editor.",
"keywords": [
"wysiwyg",
"rich text",
"editor",
"html",
"contentEditable",
"editing",
"omi",
"ckeditor",
"ckeditor5",
"ckeditor 5"
],
"dependencies": {
"prop-types": "^15.6.1"
},
"devDependencies": {
"@ckeditor/ckeditor5-build-classic": "^11.0.1",
"@ckeditor/ckeditor5-dev-env": "^11.1.1",
"@ckeditor/ckeditor5-dev-utils": "^10.0.3",
"@babel/core": "^7.2.2",
"babel-loader": "^8.0.5",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-decorators": "^7.2.3",
"@babel/plugin-proposal-function-bind": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.2.0",
"chai": "^4.1.2",
"enzyme": "^3.3.0",
"istanbul-instrumenter-loader": "^3.0.0",
"karma": "^2.0.0",
"karma-browserstack-launcher": "^1.3.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-coveralls": "^2.0.0",
"karma-firefox-launcher": "^1.0.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.4",
"karma-sinon": "^1.0.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.0",
"minimist": "^1.2.0",
"mocha": "^5.2.0",
"omi": "5.0.23",
"sinon": "^6.1.3",
"uglifyjs-webpack-plugin": "^1.2.7",
"webpack": "^4.16.0",
"webpack-cli": "^3.1.0"
},
"peerDependencies": {
"omi": "5.0.23"
},
"scripts": {
"build": "webpack --mode production",
"develop": "webpack --mode development --watch",
"changelog": "node ./scripts/changelog.js",
"prerelease": "npm run build; if [ -n \"$(git status dist/ --porcelain)\" ]; then git add -u dist/ && git commit -m 'Internal: Build.'; fi",
"release": "node ./scripts/release.js",
"test": "node ./scripts/test.js",
"coverage": "node ./scripts/test.js --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/LeeHyungGeun/ckeditor5-omi.git"
},
"author": "CKSource (http://cksource.com/)",
"license": "GPL-2.0-or-later",
"bugs": {
"url": "https://github.com/LeeHyungGeun/ckeditor5-omi/issues"
},
"homepage": "https://github.com/LeeHyungGeun/ckeditor5-omi",
"alias": {
"omi": "omio"
}
}