forked from nozer/quill-delta-to-html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.65 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
{
"name": "quill-delta-to-html",
"version": "0.5.0",
"description": "Converts Quill's delta ops to HTML",
"main": "dist/commonjs/main.js",
"dependencies": {},
"devDependencies": {
"@types/mocha": "^2.2.40",
"@types/node": "^7.0.12",
"coveralls": "^2.13.0",
"mocha": "^3.2.0",
"nyc": "^10.2.0",
"ts-node": "^3.0.2",
"typescript": "^2.2.2"
},
"scripts": {
"browserbundle": "browserify ./dist/commonjs/QuillDeltaToHtmlConverter.js -o ./dist/browser/QuillDeltaToHtmlConverter.bundle.js -s QuillDeltaToHtmlConverter ",
"browser": "npm run browserbundle && echo '; window.QuillDeltaToHtmlConverter = window.QuillDeltaToHtmlConverter.QuillDeltaToHtmlConverter; ' >> ./dist/browser/QuillDeltaToHtmlConverter.bundle.js ",
"watch": "tsc --watch ",
"test": "./node_modules/nyc/bin/nyc.js ./node_modules/mocha/bin/mocha --compilers ts:ts-node/register -b \"./test/**/*.ts\" ",
"coverage": "./node_modules/nyc/bin/nyc.js report --reporter=text-lcov | coveralls "
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/nozer/quill-delta-to-html.git"
},
"keywords": [
"quill",
"delta",
"html"
],
"author": "Nihat Özer <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/nozer/quill-delta-to-html/issues"
},
"homepage": "https://github.com/nozer/quill-delta-to-html#readme",
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"typings",
"src/main.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"json",
"html"
],
"all": true
}
}