This repository was archived by the owner on May 22, 2018. It is now read-only.
forked from UmbraEngineering/quilljs-renderer
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.26 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.26 KB
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
{
"name": "convert-rich-text",
"version": "2.0.2",
"description": "Convert an insert-only rich-text delta into HTML",
"main": "index.js",
"browser": "browser.js",
"scripts": {
"info": "make info",
"lint": "make lint",
"start": "make start",
"test": "NODE_ENV=test karma start && mocha test/server/server.js -R spec"
},
"repository": {
"type": "git",
"url": "git://github.com/thomsbg/convert-rich-text"
},
"keywords": [
"rich-text",
"quilljs",
"delta",
"html",
"convert"
],
"author": "Blake Thomson <thomsbg@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/thomsbg/convert-rich-text/issues"
},
"homepage": "https://github.com/thomsbg/convert-rich-text",
"dependencies": {
"jsdom": ">=3.1.2"
},
"devDependencies": {
"browserify": "^9.0.8",
"chai": "^2.2.0",
"http-server": "^0.8.0",
"jshint": "^2.7.0",
"karma": "^0.13.22",
"karma-chai": "^0.1.0",
"karma-mocha": "^0.2.2",
"karma-phantomjs-launcher": "^1.0.0",
"karma-phantomjs-shim": "^1.2.0",
"karma-source-map-support": "^1.1.0",
"karma-webpack": "^1.7.0",
"mocha-phantomjs": "^3.5.3",
"phantomjs-prebuilt": "^2.1.7",
"watchify": "^3.2.0",
"webpack": "^1.12.15"
}
}