forked from KillerCodeMonkey/ngx-quill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 2.87 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
{
"name": "ngx-quill",
"license": "MIT",
"version": "4.4.2",
"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": "tslint --force \"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"
}
},
"$schema": "./node_modules/ng-packagr/package.schema.json",
"peerDependencies": {
"@angular/common": "^5.0.0 || ^6.0.0 || ^7.0.0",
"@angular/core": "^5.0.0 || ^6.0.0 || ^7.0.0",
"@angular/forms": "^5.0.0 || ^6.0.0 || ^7.0.0",
"quill": "^1.3.6",
"rxjs": "^5.5.2 || ^6.1.0 || ^6.3.0"
},
"devDependencies": {
"@angular/common": "^5.0.0 || ^6.0.0 || ^7.0.0",
"@angular/compiler": "^5.0.0 || ^6.0.0 || ^7.0.0",
"@angular/compiler-cli": "^5.0.0 || ^6.0.0 || ^7.0.0",
"@angular/core": "^5.0.0 || ^6.0.0 || ^7.0.0",
"@angular/forms": "^5.0.0 || ^6.0.0 || ^7.0.0",
"@angular/platform-browser": "^5.0.0 || ^6.0.0 || ^7.0.0",
"@angular/platform-browser-dynamic": "^5.0.0 || ^6.0.0 || ^7.0.0",
"@types/jasmine": "^2.8.9",
"@types/node": "^10.12.0",
"@types/quill": "^1.3.10",
"ajv": "^6.5.4",
"codelyzer": "^4.5.0",
"core-js": "^2.5.7",
"istanbul-instrumenter-loader": "^3.0.1",
"jasmine-core": "^3.2.1",
"karma": "^3.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-coverage-istanbul-reporter": "^2.0.4",
"karma-jasmine": "^1.1.2",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.5",
"loader-utils": "^1.1.0",
"ng-packagr": "^4.4.0",
"puppeteer": "^1.10.0",
"quill": "^1.3.6",
"reflect-metadata": "^0.1.12",
"rxjs": "^5.5.2 || ^6.1.0 | ^6.3.0",
"source-map-loader": "^0.2.4",
"ts-helpers": "^1.1.2",
"ts-loader": "5.2.2",
"tslint-eslint-rules": "^5.1.0",
"tsickle": "0.33.1",
"tslint": "^4.0.0 || ^5.10.0",
"typescript": ">=2.4.2 || <2.8 || ^3.1",
"webpack": "^4.22.0",
"webpack-cli": "3.1.1",
"webpack-node-externals": "^1.7.2",
"zone.js": "^0.8.26"
},
"contributors": [
{
"name": "Bengt Weiße"
}
]
}