forked from ckeditor/ckeditor5-build-balloon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 2.1 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
{
"name": "@ckeditor/ckeditor5-build-balloon",
"version": "1.0.0-beta.3",
"description": "CKEditor 5 balloon editor build.",
"keywords": [
"ckeditor5",
"ckeditor5-build",
"text editor",
"WYSIWYG",
"rich-text editor"
],
"main": "./build/ckeditor.js",
"files": [
"build"
],
"devDependencies": {
"@ckeditor/ckeditor5-adapter-ckfinder": "^1.0.0-beta.2",
"@ckeditor/ckeditor5-autoformat": "^1.0.0-beta.2",
"@ckeditor/ckeditor5-basic-styles": "^1.0.0-beta.2",
"@ckeditor/ckeditor5-block-quote": "^1.0.0-beta.2",
"@ckeditor/ckeditor5-dev-utils": "^8.0.0",
"@ckeditor/ckeditor5-dev-webpack-plugin": "^4.0.0",
"@ckeditor/ckeditor5-easy-image": "^1.0.0-beta.2",
"@ckeditor/ckeditor5-editor-balloon": "^1.0.0-beta.2",
"@ckeditor/ckeditor5-essentials": "^1.0.0-beta.2",
"@ckeditor/ckeditor5-heading": "^1.0.0-beta.2",
"@ckeditor/ckeditor5-image": "^1.0.0-beta.2",
"@ckeditor/ckeditor5-link": "^1.0.0-beta.2",
"@ckeditor/ckeditor5-list": "^1.0.0-beta.2",
"@ckeditor/ckeditor5-paragraph": "^1.0.0-beta.2",
"@ckeditor/ckeditor5-theme-lark": "^1.0.0-beta.2",
"@ckeditor/ckeditor5-upload": "^1.0.0-beta.2",
"babel-minify-webpack-plugin": "^0.3.0",
"postcss-loader": "^2.0.10",
"raw-loader": "^0.5.1",
"style-loader": "^0.20.3",
"webpack": "^3.11.0",
"webpack-sources": "1.0.1"
},
"engines": {
"node": ">=6.0.0",
"npm": ">=3.0.0"
},
"author": "CKSource (http://cksource.com/)",
"license": "(GPL-2.0 OR LGPL-2.1 OR MPL-1.1)",
"homepage": "https://ckeditor.com",
"bugs": "https://github.com/ckeditor/ckeditor5-build-balloon/issues",
"repository": {
"type": "git",
"url": "https://github.com/ckeditor/ckeditor5-build-balloon.git"
},
"scripts": {
"build": "npm run create-entry-file && npm run build-ckeditor",
"create-entry-file": "node bin/create-entry-file.js",
"build-ckeditor": "sh bin/build-ckeditor.sh",
"preversion": "npm run build; if [ -n \"$(git status src/ckeditor.js build/ --porcelain)\" ]; then git add -u src/ckeditor.js build/ && git commit -m 'Internal: Build.'; fi"
}
}