forked from ckeditor/ckeditor4-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.4 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
{
"name": "ckeditor4-angular",
"version": "2.1.0",
"description": "Official CKEditor 4 component for Angular.",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build-package": "node ./scripts/build-package.js",
"test": "node ./scripts/test.js",
"lint": "ng lint",
"e2e": "ng e2e",
"bump": "node ./scripts/bump.js",
"publish:dry": "npm publish dist/ --dry-run",
"publish": "npm publish dist/",
"preversion": "npm test",
"version": "npm run build-package && git add -f dist/",
"postversion": "git rm -r --cached dist/ && git commit -m \"Clean after release [ci skip]\" && git push origin && git push origin --tags"
},
"author": "CKSource (https://cksource.com/)",
"license": "(GPL-2.0-or-later OR LGPL-2.1-or-later OR MPL-1.1-or-later)",
"homepage": "https://ckeditor.com/",
"bugs": "https://github.com/ckeditor/ckeditor4-angular/issues",
"repository": {
"type": "git",
"url": "https://github.com/ckeditor/ckeditor4-angular.git"
},
"private": true,
"dependencies": {},
"devDependencies": {
"@angular-devkit/build-angular": "^0.1101.4",
"@angular/animations": "^11.1.2",
"@angular/cli": "^11.1.4",
"@angular/common": "^11.1.2",
"@angular/compiler": "^11.1.2",
"@angular/compiler-cli": "^11.1.2",
"@angular/core": "^11.1.2",
"@angular/forms": "^11.1.2",
"@angular/language-service": "^11.1.2",
"@angular/platform-browser": "^11.1.2",
"@angular/platform-browser-dynamic": "^11.1.2",
"@angular/router": "^11.1.2",
"@types/jasmine": "^3.6.3",
"@types/jasminewd2": "^2.0.8",
"@types/node": "^14.14.25",
"classlist.js": "^1.1.20150312",
"codelyzer": "^6.0.1",
"core-js": "^3.8.3",
"fs-extra": "^9.1.0",
"jasmine-core": "^3.6.0",
"jasmine-spec-reporter": "^6.0.0",
"karma": "^5.2.3",
"karma-browserstack-launcher": "^1.6.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-firefox-launcher": "^2.1.0",
"karma-jasmine": "^4.0.1",
"karma-jasmine-html-reporter": "^1.5.0",
"karma-spec-reporter": "0.0.32",
"load-script": "^1.0.0",
"minimalist": "^1.0.0",
"ng-packagr": "^11.1.4",
"protractor": "~7.0.0",
"rxjs": "^6.6.3",
"ts-node": "^9.1.1",
"tslib": "^2.1.0",
"tslint": "^6.1.3",
"typescript": "^4.1.3",
"wait-until-promise": "^1.0.0",
"zone.js": "^0.11.3"
}
}