forked from KillerCodeMonkey/ngx-quill
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.67 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.67 KB
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
{
"name": "ngx-quill",
"license": "MIT",
"version": "1.5.1",
"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"
},
"scripts": {
"lint": "tslint --force \"src/**/*.ts\"",
"prepare": "npm run test && npm run build && npm run build:aot",
"build": "webpack --display-error-details && cp bundles/ngx-quill.umd.js bundles/index.js",
"build:aot": "rm -rf aot && node_modules/.bin/ngc -p tsconfig-aot.json",
"pretest": "npm run lint",
"test": "./node_modules/.bin/karma start",
"test-watch": "./node_modules/.bin/karma start --no-single-run --auto-watch"
},
"keywords": [
"editor",
"rich text",
"wysiwyg",
"angular",
"directive",
"component",
"quill",
"quilljs",
"angular 2",
"angular",
"text editor"
],
"main": "./index.js",
"typings": "index.d.ts",
"dependencies": {
"@types/quill": "^1.3.3",
"quill": "^1.3.2"
},
"peerDependencies": {
"@angular/core": "^2.4.1 || ^4.0.0",
"@angular/forms": "^2.4.1 || ^4.0.0",
"rxjs": "^5.0.1 || ^5.2.0"
},
"devDependencies": {
"@angular/common": "^2.4.1 || ^4.0.0",
"@angular/compiler": "^2.4.1 || ^4.0.0",
"@angular/compiler-cli": "^2.4.1 || ^4.0.0",
"@angular/core": "^2.4.1 || ^4.0.0",
"@angular/forms": "^2.4.1 || ^4.0.0",
"@angular/platform-browser": "^2.4.1 || ^4.0.0",
"@angular/platform-browser-dynamic": "^2.4.1 || ^4.0.0",
"@types/jasmine": "^2.5.35",
"@types/node": "^6.0.45",
"awesome-typescript-loader": "^2.2.4 || ^3.1.2",
"codelyzer": "^3.0.0-beta.4",
"core-js": "^2.4.1",
"istanbul-instrumenter-loader": "^3.0.0",
"jasmine-core": "^2.8.0",
"karma": "^1.7.1",
"karma-coverage": "^1.1.1",
"karma-coverage-istanbul-reporter": "^1.3.0",
"karma-jasmine": "^1.1.0",
"karma-mocha-reporter": "^2.2.4",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.4",
"loader-utils": "^1.1.0",
"reflect-metadata": "^0.1.10",
"rxjs": "^5.0.1 || ^5.2.0",
"source-map-loader": "^0.2.1",
"ts-helpers": "^1.1.2",
"tslint": "^4.0.0",
"tslint-loader": "^3.5.3",
"typescript": "~2.0.10 || ^2.2.0",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.8.2",
"webpack-node-externals": "^1.6.0",
"zone.js": "^0.7.8 || ^0.8.5"
},
"contributors": [
{
"name": "Bengt Weiße"
}
]
}