-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 774 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 774 Bytes
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
{
"author": "Brandon Fry",
"name": "node-crfpp",
"version": "1.0.1",
"main": "./src/node-crfpp.js",
"description": "Wrapper of the CRF++ library",
"dependencies": {
"bindings": "~1.5.0",
"node-addon-api": "^3.0.0"
},
"engines": {
"node": ">=12.2.0"
},
"files": [
"binding.gyp",
"/deps",
"/src"
],
"gypfile": true,
"scripts": {
"test": "node --napi-modules ./test/test-node-crfpp.js"
},
"keywords": [
"crf",
"crf++",
"node-crfpp",
"conditional random fields",
"data science",
"pattern recognition",
"machine learning"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/brandon-fry/node-crfpp/issues"
},
"homepage": "https://github.com/brandon-fry/node-crfpp#readme"
}