forked from slab/quill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.39 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
84
85
86
87
88
{
"name": "quill",
"version": "1.0.0",
"description": "Cross browser rich text editor",
"author": "Jason Chen <[email protected]>",
"homepage": "http://quilljs.com",
"main": "dist/quill.js",
"files": [
"assets",
"blots",
"core",
"formats",
"modules",
"themes",
"ui",
"dist/quill.bubble.css",
"dist/quill.snow.css",
"dist/quill.css",
"dist/quill.js",
"dist/quill.min.js.map",
"dist/quill.min.js",
"core.js",
"quill.js"
],
"config": {
"ports": {
"proxy": "9000",
"jekyll": "4000",
"karma": "9876",
"webpack": "9080"
}
},
"dependencies": {
"clone": "~1.0.2",
"deep-equal": "~1.0.1",
"eventemitter3": "~1.2.0",
"extend": "~3.0.0",
"parchment": "quilljs/parchment.git#ef2aaa0c277fe3ec8af81d75c2a693d6295a7be2",
"rich-text": "~3.0.0"
},
"devDependencies": {
"async": "^1.5.2",
"babel-core": "^6.7.6",
"babel-loader": "^6.2.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"css-loader": "~0.23.1",
"extract-text-webpack-plugin": "^1.0.1",
"html-loader": "~0.4.3",
"http-proxy": "^1.13.2",
"istanbul-instrumenter-loader": "~0.2.0",
"jasmine-core": "^2.4.1",
"karma": "~0.13.22",
"karma-chrome-launcher": "~0.2.3",
"karma-coverage": "~0.5.5",
"karma-jasmine": "~0.3.8",
"karma-sauce-launcher": "~0.3.1",
"lodash": "^4.10.0",
"protractor": "^3.2.2",
"quill-docs": "quilljs/quilljs.github.io.git#1.0",
"style-loader": "~0.13.1",
"stylus-loader": "~1.6.1",
"ts-loader": "~0.8.2",
"typescript": "^1.8.9",
"webpack": "^1.12.15",
"webpack-dev-server": "^1.14.1"
},
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/quilljs/quill"
},
"bugs": {
"url": "https://github.com/quilljs/quill/issues"
},
"scripts": {
"build": "webpack --config _develop/webpack.config.js --devtool hidden-source-map",
"start": "npm run build; foreman start -f _develop/procfile",
"test": "npm run build; karma start _develop/karma.config.js",
"test:coverage": "webpack --config _develop/webpack.coverage.js; karma start _develop/karma.config.js --reporters coverage",
"travis": "karma start _develop/karma.config.js --reporters dots,saucelabs"
},
"keywords": [
"editor",
"rich text",
"wysiwyg"
]
}