forked from ckeditor/ckeditor5
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 4.14 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 4.14 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "ckeditor5",
"version": "1.0.0-alpha.2",
"description": "The development environment of CKEditor 5.",
"keywords": [
"CKEditor",
"ckeditor5",
"editor",
"WYSIWYG",
"text editor",
"rich-text editor",
"contentEditable",
"editing framework"
],
"dependencies": {
"@ckeditor/ckeditor5-adapter-ckfinder": "^1.0.0-alpha.2",
"@ckeditor/ckeditor5-alignment": "^0.0.1",
"@ckeditor/ckeditor5-autoformat": "^1.0.0-alpha.2",
"@ckeditor/ckeditor5-basic-styles": "^1.0.0-alpha.2",
"@ckeditor/ckeditor5-block-quote": "^1.0.0-alpha.2",
"@ckeditor/ckeditor5-build-balloon": "^1.0.0-alpha.2",
"@ckeditor/ckeditor5-build-classic": "^1.0.0-alpha.2",
"@ckeditor/ckeditor5-build-inline": "^1.0.0-alpha.2",
"@ckeditor/ckeditor5-clipboard": "^1.0.0-alpha.2",
"@ckeditor/ckeditor5-cloudservices": "^1.0.0-alpha.1",
"@ckeditor/ckeditor5-core": "^1.0.0-alpha.2",
"@ckeditor/ckeditor5-easy-image": "^1.0.0-alpha.2",
"@ckeditor/ckeditor5-editor-balloon": "^1.0.0-alpha.2",
"@ckeditor/ckeditor5-editor-classic": "^1.0.0-alpha.2",
"@ckeditor/ckeditor5-editor-inline": "^1.0.0-alpha.2",
"@ckeditor/ckeditor5-engine": "^1.0.0-alpha.2",
"@ckeditor/ckeditor5-enter": "^1.0.0-alpha.2",
"@ckeditor/ckeditor5-essentials": "^1.0.0-alpha.2",
"@ckeditor/ckeditor5-heading": "^1.0.0-alpha.2",
"@ckeditor/ckeditor5-image": "^1.0.0-alpha.2",
"@ckeditor/ckeditor5-link": "^1.0.0-alpha.2",
"@ckeditor/ckeditor5-list": "^1.0.0-alpha.2",
"@ckeditor/ckeditor5-markdown-gfm": "^1.0.0-alpha.2",
"@ckeditor/ckeditor5-paragraph": "^1.0.0-alpha.2",
"@ckeditor/ckeditor5-theme-lark": "^1.0.0-alpha.2",
"@ckeditor/ckeditor5-typing": "^1.0.0-alpha.2",
"@ckeditor/ckeditor5-ui": "^1.0.0-alpha.2",
"@ckeditor/ckeditor5-undo": "^1.0.0-alpha.2",
"@ckeditor/ckeditor5-upload": "^1.0.0-alpha.2",
"@ckeditor/ckeditor5-utils": "^1.0.0-alpha.2",
"@ckeditor/ckeditor5-widget": "^1.0.0-alpha.2"
},
"devDependencies": {
"@ckeditor/ckeditor5-dev-docs": "^8.0.0",
"@ckeditor/ckeditor5-dev-env": "^8.0.4",
"@ckeditor/ckeditor5-dev-tests": "^10.2.0",
"@ckeditor/ckeditor5-dev-utils": "^7.0.3",
"@ckeditor/ckeditor5-dev-webpack-plugin": "^3.0.4",
"babel-minify-webpack-plugin": "^0.2.0",
"eslint": "^4.15.0",
"eslint-config-ckeditor5": "^1.0.7",
"extract-text-webpack-plugin": "^3.0.2",
"glob": "^7.1.2",
"husky": "^0.14.3",
"lerna": "^2.2.0",
"lint-staged": "^6.0.0",
"mgit2": "^0.7.2",
"minimatch": "^3.0.4",
"postcss-loader": "^2.0.10",
"raw-loader": "^0.5.1",
"style-loader": "^0.19.1",
"umberto": "^0.3.48",
"webpack": "^3.10.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": "http://ckeditor.com",
"bugs": "https://github.com/ckeditor/ckeditor5/issues",
"repository": {
"type": "git",
"url": "https://github.com/ckeditor/ckeditor5.git"
},
"scripts": {
"lint": "eslint --quiet '**/*.js'",
"precommit": "lint-staged",
"test": "node --max_old_space_size=4096 node_modules/@ckeditor/ckeditor5-dev-tests/bin/test.js",
"test:manual": "node --max_old_space_size=4096 node_modules/@ckeditor/ckeditor5-dev-tests/bin/test-manual.js",
"docs": "node ./scripts/docs/build-docs.js",
"docs:api": "node ./scripts/docs/build-api-docs.js",
"docs:build-and-publish": "node ./scripts/docs/build-and-publish.js",
"docs:build-and-publish-nightly": "node ./scripts/docs/build-and-publish-nightly.js",
"translations:collect": "ckeditor5-dev-env-translations collect",
"translations:download": "ckeditor5-dev-env-translations download",
"translations:upload": "ckeditor5-dev-env-translations upload",
"changelog": "node ./scripts/release/changelog.js",
"release:dependencies": "node ./scripts/release/release-dependencies.js",
"switch-to-dev-dev": "sh ./scripts/switch-to-dev-dev.sh"
},
"lint-staged": {
"**/*.js": [
"eslint --quiet"
]
},
"eslintIgnore": [
"build/**",
"coverage/**",
"packages/**"
]
}