-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 895 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
37
38
39
{
"name": "lexed",
"version": "1.0.10",
"description": "English word and sentence tokenizer, for natural language processing.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha",
"build": "tsc",
"prepublish": "mocha && tsc",
"penn":"ts-node test/penn-treebank.ts"
},
"keywords": [
"lexer",
"lexed",
"word",
"sentence",
"tokenization"
],
"author": "Alex Corvi <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/finnlp/lexed.git"
},
"bugs": {
"url": "https://github.com/finnlp/lexed/issues"
},
"homepage": "https://github.com/finnlp/lexed#readme",
"devDependencies": {
"@types/mocha": "^2.2.39",
"@types/node": "^7.0.7",
"ts-node": "^2.1.0",
"typescript": "^2.2.1"
}
}