@diplodoc/sentenizer
Version:
text segmentation into sentences
60 lines (59 loc) • 1.71 kB
JSON
{
"name": "@diplodoc/sentenizer",
"version": "0.0.8",
"description": "text segmentation into sentences",
"homepage": "https://github.com/diplodoc-platform/sentenizer",
"bugs": {
"url": "https://github.com/diplodoc-platform/sentenizer/issues",
"email": "moki-codes@yandex-team.ru"
},
"keywords": [
"nlp",
"parser",
"tokenization",
"sentence-segmentation",
"russian"
],
"main": "./lib/index.js",
"types": "./lib/index.d.js",
"files": [
"lib/"
],
"scripts": {
"test": "jest --coverage --verbose --silent=false",
"test:watch": "jest --watch --verbose --silent=false",
"build": "npm run build:clean && npm run build:code",
"build:code": "tsc -p tsconfig.types.json && node scripts/bundle.js",
"build:clean": "rm -rf lib",
"build:dev": "npm run build:dev:clean && npm run build:dev:code",
"build:dev:code": "node scripts/development.js",
"build:dev:clean": "rm -rf dist",
"prepublishOnly": "npm run build"
},
"author": {
"name": "moki-codes",
"email": "moki-codes@yandex-team.ru",
"url": "github.com/moki"
},
"license": "MIT",
"devDependencies": {
"@es-exec/api": "0.0.5",
"@esbuild-plugins/tsconfig-paths": "^0.1.2",
"@tsconfig/node14": "^1.0.3",
"@types/jest": "^27.5.2",
"@types/node": "^17.0.35",
"@yandex-cloud/eslint-config": "^1.0.1",
"@yandex-cloud/prettier-config": "^1.0.0",
"esbuild": "^0.17.18",
"esbuild-jest": "^0.5.0",
"esbuild-node-externals": "^1.7.0",
"eslint": "^8.16.0",
"jest": "^28.1.0",
"prettier": "^2.6.2",
"typescript": "^5.0.4"
},
"dependencies": {
"@types/ramda": "^0.28.13",
"ramda": "^0.28.0"
}
}