forked from voxmedia/convert-rich-text
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.28 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": "convert-rich-text",
"version": "2.0.3",
"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 <[email protected]>",
"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",
"lodash": "^3.6.0"
},
"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"
}
}