forked from slab/quill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.13 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
{
"name": "quill",
"version": "0.20.0",
"description": "Cross browser rich text editor",
"author": "Jason Chen <[email protected]>",
"homepage": "http://quilljs.com",
"contributors": [
"Byron Milligan <[email protected]>"
],
"main": "dist/quill.js",
"dependencies": {
"clone": "~1.0.2",
"deep-equal": "~1.0.1",
"eventemitter3": "~1.1.1",
"extend": "~3.0.0",
"parchment": "quilljs/parchment.git#903960d770ffe93a119da02fcbc0d257c4e67437",
"rich-text": "~2.1.1"
},
"devDependencies": {
"async": "^1.5.2",
"babel-core": "^6.4.0",
"babel-loader": "^6.2.1",
"babel-plugin-transform-runtime": "^6.4.0",
"babel-preset-es2015": "^6.3.13",
"babel-runtime": "^6.3.19",
"css-loader": "~0.23.1",
"del": "^2.2.0",
"gulp": "^3.9.0",
"gulp-flatten": "~0.2.0",
"gulp-gzip": "^1.2.0",
"gulp-header": "^1.7.1",
"gulp-jade": "^1.1.0",
"gulp-protractor": "^2.1.0",
"gulp-rename": "^1.2.2",
"gulp-stylus": "^2.2.0",
"gulp-tar": "^1.8.0",
"gulp-uglify": "^1.5.1",
"gulp-util": "^3.0.7",
"isparta-loader": "^2.0.0",
"jasmine-core": "^2.4.1",
"jquery": "^2.2.0",
"karma": "~0.13.19",
"karma-babel-preprocessor": "^6.0.1",
"karma-chrome-launcher": "~0.2.2",
"karma-coverage": "~0.5.3",
"karma-firefox-launcher": "~0.1.7",
"karma-html2js-preprocessor": "~0.1.0",
"karma-jasmine": "~0.3.6",
"karma-safari-launcher": "~0.1.1",
"karma-sauce-launcher": "~0.3.0",
"karma-webpack": "^1.7.0",
"lodash": "^4.0.0",
"protractor": "^3.0.0",
"run-sequence": "^1.1.5",
"stylus-loader": "^1.4.3",
"ts-loader": "~0.8.0",
"typescript": "^1.7.5",
"webpack": "^1.12.11",
"webpack-dev-server": "^1.14.1"
},
"engines": {
"node": "^5.3",
"npm": "^3.5"
},
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/quilljs/quill"
},
"bugs": {
"url": "https://github.com/quilljs/quill/issues"
},
"scripts": {
"prepublish": "gulp npm",
"start": "gulp dev",
"test": "gulp test"
},
"keywords": [
"editor",
"rich text",
"wysiwyg"
]
}