forked from yabab-dev/ng2-ckeditor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.77 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
{
"name": "ng2-ckeditor",
"version": "1.3.4",
"description": "Angular CKEditor component",
"main": "lib/bundles/ng2-ckeditor.umd.min.js",
"typings": "lib/ng2-ckeditor.d.ts",
"scripts": {
"prepublishOnly": "npm run build",
"build": "ng-packagr -p 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 && cd lib && npm publish"
},
"keywords": [
"angular",
"angular2",
"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": "^12.0.4",
"@angular/common": "^12.0.4",
"@angular/compiler": "^12.0.4",
"@angular/compiler-cli": "^12.0.4",
"@angular/core": "^12.0.4",
"@angular/forms": "^12.0.4",
"@angular/platform-browser": "^12.0.4",
"@angular/platform-server": "^12.0.4",
"@types/ckeditor": "^4.9.10",
"@types/core-js": "^2.5.4",
"@types/node": "^15.12.2",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"eslint": "^7.28.0",
"ng-packagr": "^12.0.5",
"prettier": "^2.3.1",
"typescript": "^4.2.3",
"zone.js": "^0.11.4"
},
"peerDependencies": {
"@angular/common": "^12.0.4",
"@angular/core": "^12.0.4",
"@angular/forms": "^12.0.4",
"@types/ckeditor": "^4.9.10"
},
"ngPackage": {
"lib": {
"entryFile": "./src/index.ts"
},
"dest": "lib"
}
}