-
Notifications
You must be signed in to change notification settings - Fork 96
/
package.json
52 lines (52 loc) · 1.48 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
{
"name": "ng2-ckeditor",
"version": "1.3.7",
"description": "Angular CKEditor component",
"scripts": {
"prepublishOnly": "npm run build",
"build": "ng-packagr -p ng-package.json",
"lint": "eslint -c ./.eslintrc.json ./src/**/*.ts",
"prettier": "prettier --ignore-path .gitignore --write ./**/*.ts",
"precommit": "npm run prettier && npm run lint",
"pub": "npm run build && npm publish dist"
},
"keywords": [
"angular",
"component",
"ckeditor",
"wysiwyg"
],
"author": "Simon Babay",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/chymz/ng2-ckeditor.git"
},
"bugs": {
"url": "https://github.com/chymz/ng2-ckeditor/issues"
},
"homepage": "https://github.com/chymz/ng2-ckeditor#readme",
"devDependencies": {
"@angular/animations": "^14.1.2",
"@angular/common": "^14.1.2",
"@angular/compiler": "^14.1.2",
"@angular/compiler-cli": "^14.1.2",
"@angular/core": "^14.1.2",
"@angular/forms": "^14.1.2",
"@angular/platform-browser": "^14.1.2",
"@angular/platform-server": "^14.1.2",
"@types/ckeditor": "^4.9.10",
"@types/core-js": "^2.5.5",
"@types/node": "^18.7.2",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"eslint": "^8.21.0",
"ng-packagr": "^14.1.0",
"prettier": "^2.7.1",
"typescript": "^4.7.4",
"zone.js": "^0.11.8"
},
"peerDependencies": {
"@types/ckeditor": "^4.9.10"
}
}