forked from KillerCodeMonkey/ng-quill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.26 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
{
"name": "ng-quill",
"version": "3.5.1",
"description": "Angular directive for rich text editor Quill",
"author": "Bengt Weiße <[email protected]>",
"homepage": "https://github.com/KillerCodeMonkey/ngQuill",
"main": "dist/ng-quill.js",
"devDependencies": {
"angular-mocks": "^1.5.3",
"jasmine-core": "^2.5.2",
"karma": "^1.3.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.1.0",
"karma-mocha-reporter": "2.2.1",
"karma-phantomjs-launcher": "^1.0.2",
"rimraf": "^2.6.1",
"uglify-js": "^2.4.10"
},
"engines": {
"node": ">=0.10"
},
"dependencies": {
"quill": "^1.2.0",
"angular": "^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"
],
"contributors": [
{
"name": "Bengt Weiße"
}
]
}