-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.94 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
62
{
"name": "@doc-tools/sentenizer",
"version": "0.0.0",
"description": "text segmentation into sentences",
"homepage": "https://github.com/yandex-cloud/sentenizer#readme",
"bugs": {
"url": "https://github.com/yandex-cloud/sentenizer/issues",
"email": "moki-codes@yandex-team.ru"
},
"keywords": [
"nlp",
"parser",
"tokenization",
"sentence-segmentation",
"russian"
],
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"files": [
"lib/"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watch --coverage --verbose --silent=false",
"build:dev": "npm run build:dev:clean && npm run build:dev:code && npm run build:dev:types && node dist/index.js",
"build:dev:clean": "rm -rf dist",
"build:dev:code": "node scripts/build.dev.js",
"build:dev:types": "tsc -p scripts/tsconfig.dev.json",
"build": "npm run build:clean && npm run build:cjs && npm run build:esm",
"build:clean": "rm -rf lib",
"build:cjs": "npm run build:cjs:code && npm run build:cjs:types",
"build:cjs:code": "node scripts/build.cjs.js",
"build:cjs:types": "tsc -p scripts/tsconfig.cjs.json",
"build:esm": "npm run build:esm:code && npm run build:esm:types",
"build:esm:code": "node scripts/build.esm.js",
"build:esm:types": "tsc -p scripts/tsconfig.esm.json",
"prepublishOnly": "npm run build"
},
"author": {
"name": "moki-codes",
"email": "moki-codes@yandex-team.ru",
"url": "github.com/moki"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.5.1",
"@types/node": "^17.0.35",
"@yandex-cloud/eslint-config": "^1.0.1",
"@yandex-cloud/prettier-config": "^1.0.0",
"esbuild": "^0.14.39",
"esbuild-node-externals": "^1.4.1",
"eslint": "^8.16.0",
"jest": "^28.1.0",
"prettier": "^2.6.2",
"ts-jest": "^28.0.3",
"typescript": "^4.6.4"
},
"dependencies": {
"@types/ramda": "^0.28.13",
"ramda": "^0.28.0"
}
}