This repository has been archived by the owner on Aug 20, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 108
/
package.json
60 lines (60 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
53
54
55
56
57
58
59
60
{
"name": "ng-quill",
"version": "4.5.3",
"description": "Angular component for the Quill Rich Text Editor",
"author": "Bengt Weiße <[email protected]>",
"homepage": "https://github.com/KillerCodeMonkey/ngQuill",
"main": "dist/ng-quill.js",
"devDependencies": {
"angular": "^1.7.8",
"angular-mocks": "^1.7.8",
"angular-sanitize": "^1.7.8",
"jasmine-core": "^3.5.0",
"karma": "^5.0.1",
"karma-coverage": "^2.0.1",
"karma-jasmine": "^3.0.1",
"karma-mocha-reporter": "2.2.5",
"karma-phantomjs-launcher": "^1.0.4",
"local-web-server": "^4.0.0",
"quill": "^1.3.7",
"rimraf": "^3.0.0",
"uglify-js": "^3.6.1"
},
"engines": {
"node": ">=10"
},
"peerDependencies": {
"quill": "^1.3.6",
"angular": "^1.5.3",
"angular-sanitize": "^1.5.3"
},
"scripts": {
"build": "rimraf dist && mkdir dist && cp src/ng-quill.js dist/ && cat dist/ng-quill.js | uglifyjs > dist/ng-quill.min.js && echo \";\" >> dist/ng-quill.js",
"prepare": "npm run test && npm run build",
"test": "karma start"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/KillerCodeMonkey/ngQuill"
},
"bugs": {
"url": "https://github.com/KillerCodeMonkey/ngQuill/issues"
},
"keywords": [
"editor",
"rich text",
"wysiwyg",
"angular",
"directive",
"angularjs",
"richt text editor",
"quill",
"quilljs"
],
"contributors": [
{
"name": "Bengt Weiße"
}
]
}