-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.78 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
{
"name": "ckeditor4-integrations-common",
"version": "1.0.0",
"description": "Common CKEditor 4 integration utilities.",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"files": [
"dist/*"
],
"scripts": {
"test": "karma start",
"develop": "karma start --auto-watch --no-single-run",
"build": "rollup -c",
"preversion": "npm test",
"version": "npm run build && git add -f dist/",
"postversion": "git rm -r --cached dist/ && git commit -m \"Cleanup after release [ci skip]\" && git push origin && git push origin --tags"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/ckeditor/ckeditor4-integrations-common.git"
},
"author": "CKSource (https://cksource.com/)",
"license": "(GPL-2.0-or-later OR LGPL-2.1-or-later OR MPL-1.1-or-later)",
"bugs": {
"url": "https://github.com/ckeditor/ckeditor4-integrations-common/issues"
},
"homepage": "https://github.com/ckeditor/ckeditor4-integrations-common#readme",
"browserslist": "> 0.25%, not dead",
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@rollup/plugin-babel": "^5.3.0",
"babel-loader": "^8.2.5",
"chai": "^4.2.0",
"eslint": "^8.17.0",
"eslint-config-ckeditor5": "^3.1.0",
"istanbul-instrumenter-loader": "^3.0.1",
"karma": "^6.3.20",
"karma-browserstack-launcher": "^1.6.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage": "^2.0.3",
"karma-coveralls": "^2.1.0",
"karma-firefox-launcher": "^2.1.2",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sinon": "^1.0.5",
"karma-webpack": "^4.0.2",
"mocha": "^9.2.1",
"rollup": "^2.75.5",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-terser": "^7.0.2",
"sinon": "^9.0.3",
"sinon-chai": "^3.5.0",
"webpack": "^4.44.2"
}
}