forked from KillerCodeMonkey/ngx-quill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 2.99 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
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
110
111
{
"name": "ngx-quill",
"license": "MIT",
"version": "7.3.4",
"author": {
"name": "Bengt Weiße"
},
"description": "An angular (>= v2) component for the easy use of the QuillJS richt text editor.",
"bugs": "https://github.com/KillerCodeMonkey/ngx-quill/issues",
"homepage": "https://github.com/KillerCodeMonkey/ngx-quill",
"repository": {
"type": "git",
"url": "https://github.com/KillerCodeMonkey/ngx-quill"
},
"engines": {
"node": ">= 8"
},
"scripts": {
"lint": "eslint src/**/**/*.ts src/**/*.ts",
"build": "ng-packagr -p package.json",
"pretest": "npm run lint",
"test": "./node_modules/.bin/karma start"
},
"keywords": [
"editor",
"rich text",
"wysiwyg",
"angular",
"directive",
"component",
"quill",
"quilljs",
"angular 2",
"angular",
"angular2",
"ng",
"ngx",
"text editor"
],
"main": "./bundles/index.js",
"module": "./src/quill.module.js",
"typings": "index.d.ts",
"ngPackage": {
"lib": {
"entryFile": "index.ts"
}
},
"browserslist": [
"defaults"
],
"$schema": "./node_modules/ng-packagr/package.schema.json",
"peerDependencies": {
"@angular/common": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0",
"@angular/core": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0",
"@angular/forms": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0",
"@angular/platform-browser": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0",
"quill": "^1.3.6",
"rxjs": "^5.5.2 || ^6.1.0 || ^6.3.0 || ^6.4.0 || ^6.5.0"
},
"devDependencies": {
"@angular/common": "^8.2.9",
"@angular/compiler": "^8.2.9",
"@angular/compiler-cli": "^8.2.9",
"@angular/core": "^8.2.9",
"@angular/forms": "^8.2.9",
"@angular/platform-browser": "^8.2.9",
"@angular/platform-browser-dynamic": "^8.2.9",
"@types/jasmine": "^3.4.2",
"@types/node": "^12.7.10",
"@types/quill": "^1.3.10",
"@typescript-eslint/eslint-plugin": "^2.3.2",
"@typescript-eslint/parser": "^2.3.2",
"ajv": "^6.10.2",
"codelyzer": "^5.1.2",
"core-js": "^3.2.1",
"eslint": "^6.5.1",
"istanbul-instrumenter-loader": "^3.0.1",
"jasmine-core": "^3.5.0",
"karma": "^4.3.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.1",
"karma-coverage-istanbul-reporter": "^2.1.0",
"karma-jasmine": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.2",
"loader-utils": "^1.2.3",
"ng-packagr": "^5.5.1",
"puppeteer": "^1.20.0",
"quill": "^1.3.7",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.3",
"source-map-loader": "^0.2.4",
"ts-helpers": "^1.1.2",
"tslib": "^1.10.0",
"ts-loader": "6.2.0",
"tsickle": "^0.37.0",
"tslint": "^5.20.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.3",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9",
"webpack-node-externals": "^1.7.2",
"zone.js": "~0.9.1"
},
"contributors": [
{
"name": "Bengt Weiße"
}
]
}