forked from dariusk/pos-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.56 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
63
64
65
{
"name": "fast-tag-pos",
"description": "FastTag part of speech tagger implementation",
"version": "2.0.0",
"author": "Percy Wegmann",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/Devil7-Softwares/pos-js",
"contributors": [
{
"name": "Darius Kazemi",
"email": "darius.kazemi@gmail.com",
"url": "http://tinysubversions.com"
},
{
"name": "Dineshkumar T",
"email": "dineshkumar@devil7softwares.com",
"url": "https://devil7softwares.com"
}
],
"license": "LGPL-3.0",
"repository": {
"type": "git",
"url": "git://github.com/Devil7-Softwares/pos-js.git"
},
"bugs": {
"url": "https://github.com/Devil7-Softwares/pos-js/issues"
},
"engines": {
"node": ">=0"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"lint": "eslint . --ext ts,tsx --fix",
"format": "prettier -uw .",
"test": "ts-mocha src/**/*.spec.ts"
},
"devDependencies": {
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"mocha": "~9.2.1",
"prettier": "^2.5.1",
"should": "~13.2.3",
"ts-mocha": "^9.0.2",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"keywords": [
"nlp",
"pos",
"part of speech",
"jspos",
"fasttag"
]
}