forked from Tessmore/sbd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 894 Bytes
/
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
{
"name": "sbd",
"version": "1.0.18",
"description": "Split text into sentences with Sentence Boundary Detection (SBD).",
"main": "lib/tokenizer.js",
"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"
},
"resolutions": {
"**/minimist": "1.2.5"
},
"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": {
}
}