forked from slab/quill
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.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
{
"name": "quilljs",
"version": "0.14.1",
"description": "Cross browser rich text editor",
"author": "Jason Chen <[email protected]>",
"homepage": "http://quilljs.com",
"contributors": [
"Byron Milligan <[email protected]>",
"Keegan Poppen <[email protected]>"
],
"main": "index.js",
"dependencies": {
"eventemitter2": "~0.4.13",
"lodash": "~2.4.1",
"tandem-core": "~0.6.1",
"underscore.string": "~2.3.3"
},
"devDependencies": {
"async": "~0.9.0",
"coffeeify": "~0.6.0",
"grunt": "~0.4.3",
"grunt-browserify": "~2.1.0",
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-coffee": "~0.10.1",
"grunt-contrib-concat": "~0.4.0",
"grunt-contrib-connect": "~0.7.1",
"grunt-contrib-jade": "~0.11.0",
"grunt-contrib-stylus": "~0.16.0",
"grunt-contrib-uglify": "~0.4.0",
"grunt-contrib-watch": "~0.6.1",
"grunt-karma": "~0.8.0",
"grunt-newer": "~0.7.0",
"grunt-protractor-runner": "~0.2.4",
"grunt-shell": "~0.7.0",
"istanbul": "~0.2.6",
"jquery": "~1.11.0",
"karma": "~0.12.0",
"karma-chrome-launcher": "~0.1.2",
"karma-coffee-preprocessor": "~0.2.1",
"karma-coverage": "~0.2.0",
"karma-firefox-launcher": "~0.1.3",
"karma-html2js-preprocessor": "~0.1.0",
"karma-jasmine": "~0.2.0",
"karma-phantomjs-launcher": "~0.1.2",
"karma-safari-launcher": "~0.1.1",
"karma-sauce-launcher": "~0.2.2",
"load-grunt-tasks": "~0.4.0",
"protractor": "~0.23.0"
},
"engines": {
"node": ">=0.10"
},
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/quilljs/quill"
},
"bugs": {
"url": "https://github.com/quilljs/quill/issues"
},
"scripts": {
"prepublish": "grunt coffee:src",
"postpublish": "grunt clean:coffee",
"test": "grunt test"
},
"keywords": ["editor", "rich text", "wysiwyg"]
}