UNPKG

fortissimo-html

Version:

Fortissimo HTML - Flexible, Forgiving, Formatting HTML Parser

88 lines (87 loc) 2.2 kB
{ "name": "fortissimo-html", "version": "1.0.0-alpha.3", "description": "Fortissimo HTML - Flexible, Forgiving, Formatting HTML Parser", "main": "dist/index.js", "scripts": { "watch": "tsc -w", "test": "nyc mocha --require ts-node/register src/**/*.spec.ts && echo \"Restore HTML reporting!\"", "test-dev": "mocha --require ts-node/register -w --watch-extensions ts src/**/*.spec.ts", "test-debug": "nyc mocha --timeout 1800000 --require ts-node/register src/**/*.spec.ts", "speed": "ts-node-dev test/speed-test.ts", "lint": "tslint --project .", "prepack": "rimraf dist/ && tsc" }, "nyc": { "extension": [ ".ts" ], "include": [ "src/**/*.ts" ], "exclude": [ "**/*.d.ts", "**/*.spec.ts", "src/cli.ts", "src/index.ts", "src/platform-specifics.ts" ], "reporter": [ "text-summary" ], "require": [ "ts-node/register" ], "source-map": true, "produce-source-map": true, "instrument": true, "check-coverage": false, "cache": true, "all": true }, "keywords": [ "html", "parse", "format", "reformat", "syntax", "highlighting", "fortissimo" ], "author": "Kerry Shetline <kerry@shetline.com>", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/kshetline/fortissimo-html.git" }, "engines": { "node": ">=6.5.0" }, "bin": "./dist/cli.js", "dependencies": { "@tubular/util": "^4.6.0", "commander": "^6.2.1", "fast-glob": "^3.2.5", "iconv-lite": "^0.5.2", "tslint": "^5.20.1" }, "devDependencies": { "@types/chai": "^4.2.17", "@types/fast-html-parser": "^1.0.1", "@types/glob": "^7.1.3", "@types/mocha": "^5.2.7", "@types/node": "^14.14.44", "chai": "^4.3.4", "fast-html-parser": "^1.0.1", "htmlparser-benchmark": "^1.1.3", "http-server": "^0.12.3", "mocha": "^8.3.2", "nyc": "^14.1.1", "rimraf": "^3.0.2", "source-map-support": "^0.5.19", "ts-node-dev": "^1.1.6", "tslint-eslint-rules": "^5.4.0", "tslint-no-unused-expression-chai": "^0.1.4", "typescript": "^4.5.5" } }