forked from neopunisher/pos-js
-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
45 lines (45 loc) · 877 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
40
41
42
43
44
45
{
"name": "pos",
"description": "fasttag part of speech tagger implementation",
"keywords": [
"nlp",
"pos",
"part of speech",
"jspos",
"fasttag"
],
"homepage": "https://github.com/dariusk/pos-js",
"author": "Percy Wegmann",
"contributors": [
{
"name": "Darius Kazemi",
"email": "darius.kazemi@gmail.com",
"url": "http://tinysubversions.com"
}
],
"version": "0.4.1",
"licenses": [
{
"type": "LGPL",
"url": "http://www.gnu.org/licenses/lgpl.html"
}
],
"repository": {
"type": "git",
"url": "git://github.com/dariusk/pos-js.git"
},
"bugs": {
"url": "https://github.com/dariusk/pos-js/issues"
},
"engines": {
"node": ">=0"
},
"scripts": {
"test": "mocha"
},
"main": "./index.js",
"devDependencies": {
"mocha": "~2.1.0",
"should": "~5.0.1"
}
}