UNPKG

quill-delta-to-html

Version:
62 lines (61 loc) 1.82 kB
{ "name": "quill-delta-to-html", "version": "0.9.3", "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.0" }, "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 ", "coveragehtml": "./node_modules/nyc/bin/nyc.js report --reporter=html " }, "repository": { "type": "git", "url": "git+ssh://git@github.com/nozer/quill-delta-to-html.git" }, "keywords": [ "quill", "delta", "html" ], "author": "Nihat Özer <nihatforweb@gmail.com>", "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 } }