UNPKG

sbd-fork

Version:

Split text into sentences with Sentence Boundary Detection (SBD).

41 lines (40 loc) 1.09 kB
{ "name": "sbd-fork", "version": "1.0.20", "description": "Split text into sentences with Sentence Boundary Detection (SBD).", "main": "built/tokenizer.js", "types": "built/tokenizer.d.ts", "scripts": { "test": "mocha -R spec", "build:js": "browserify lib/tokenizer.js --standalone tokenizer > dist/sbd.js", "build:minify": "uglifyjs dist/sbd.js > dist/sbd.min.js", "build": "npm run build:js && npm run build:minify", "benchmark": "./node_modules/.bin/matcha" }, "homepage": "http://github.com/Tessmore/sbd", "repository": { "type": "git", "url": "https://github.com/Tessmore/sbd.git" }, "keywords": [ "sentence", "detection", "boundary" ], "author": { "name": "Fabiën Tesselaar" }, "license": "MIT", "readmeFilename": "README.md", "devDependencies": { "mocha": "7.1.1" }, "dependencies": { "sanitize-html": "^2.3.2", "@types/sanitize-html": "^2.3.2", "typescript": "^4.4.4" }, "browser": { "sanitize-html": "./lib/sanitize-html-browser.js" } }