forked from thomsbg/convert-rich-text
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
45 lines (45 loc) · 1.14 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
{
"name": "convert-rich-text",
"version": "6.1.0",
"description": "Convert an insert-only rich-text delta into HTML",
"main": "index.js",
"browser": "browser.js",
"scripts": {
"lint": "jshint --verbose .",
"test-client": "NODE_ENV=test karma start",
"test-server": "NODE_ENV=test mocha test/server/*.js -R spec",
"test": "yarn run lint && yarn run test-client && yarn run test-server"
},
"repository": {
"type": "git",
"url": "git://github.com/voxmedia/convert-rich-text"
},
"keywords": [
"rich-text",
"quilljs",
"delta",
"html",
"convert"
],
"author": "Blake Thomson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/voxmedia/convert-rich-text/issues"
},
"homepage": "https://github.com/voxmedia/convert-rich-text",
"dependencies": {
"jsdom": "^16.2.2",
"lodash": "^4.17.15"
},
"devDependencies": {
"chai": "^4.2.0",
"jshint": "^2.11.1",
"karma": "^5.1.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-webpack": "^5.0.0",
"mocha": "^8.0.1",
"webpack": "^5.30.0"
}
}