forked from nozer/quill-delta-to-html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.87 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
{
"name": "quill-delta-to-html",
"version": "0.10.5",
"description": "Converts Quill's delta ops to HTML",
"main": "./dist/commonjs/main.js",
"types": "./dist/commonjs/main.d.ts",
"dependencies": {},
"devDependencies": {
"@types/mocha": "^2.2.40",
"@types/node": "^7.0.12",
"coveralls": "^2.13.0",
"mocha": "^3.2.0",
"nyc": "^12.0.2",
"ts-node": "^3.0.2",
"typescript": "^2.9.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 ? window.QuillDeltaToHtmlConverter.QuillDeltaToHtmlConverter : window.QuillDeltaToHtmlConverter; ' >> ./dist/browser/QuillDeltaToHtmlConverter.bundle.js ",
"build": " tsc && npm run browser ",
"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 ",
"coveragehtml": "./node_modules/nyc/bin/nyc.js report --reporter=html "
},
"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",
"**/*.d.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"json",
"html"
],
"all": true
}
}