-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
49 lines (49 loc) · 1.05 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
{
"name": "en-pos",
"version": "1.0.16",
"description": "A better English POS tagger written in JavaScript",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "mocha",
"build": "tsc",
"wsj": "ts-node test/wsj/wsj.ts",
"prepublish": "mocha && ts-node test/wsj/wsj.ts && tsc"
},
"author": "Alex Corvi <[email protected]>",
"license": "MIT",
"dependencies": {
"cities-list": "^1.0.3",
"en-inflectors": "^1.0.7",
"en-lexicon": "^1.0.8",
"humannames": "^1.0.5"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/finnlp/en-pos.git"
},
"keywords": [
"pos",
"tagger",
"tagging",
"part",
"of",
"speech",
"brill",
"tagger",
"tag"
],
"bugs": {
"url": "https://github.com/finnlp/en-pos/issues"
},
"homepage": "https://github.com/finnlp/en-pos#readme",
"devDependencies": {
"@types/mocha": "^2.2.39",
"@types/node": "^7.0.7",
"ts-node": "^2.1.0",
"typescript": "^2.2.1"
}
}