-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathpackage.json
61 lines (61 loc) · 1.51 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
{
"name": "wink-nlp",
"version": "2.3.2",
"description": "Developer friendly Natural Language Processing ✨",
"keywords": [
"NLP",
"natural language processing",
"tokenize",
"SBD",
"sentence boundary detection",
"negation handling",
"sentiment analysis",
"POS Tagging",
"NER",
"named entity extraction",
"custom entity detection",
"word vectors",
"visualization",
"pattern matching",
"stemmer",
"bm25",
"vectorizer",
"Embeddings",
"Word Vectors",
"winkNLP",
"winkjs",
"wink"
],
"main": "src/wink-nlp.js",
"scripts": {
"pretest": "npm run lint",
"test": "nyc --reporter=html --reporter=lcov --reporter=text mocha ./test/",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"sourcedocs": "docker -i src -o ./sourcedocs --sidebar yes",
"lint": "eslint ./src/*.js ./test/*.js",
"perf": "node benchmark/run.js",
"dtslint": "dtslint types"
},
"repository": {
"type": "git",
"url": "git+https://github.com/winkjs/wink-nlp.git"
},
"author": "Sanjaya Kumar Saxena",
"license": "MIT",
"bugs": {
"url": "https://github.com/winkjs/wink-nlp/issues"
},
"homepage": "http://winkjs.org/",
"devDependencies": {
"benchmark": "^2.1.4",
"chai": "^4.3.7",
"coveralls": "^3.1.1",
"docker": "^1.0.0",
"dtslint": "^4.2.1",
"eslint": "^8.36.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0"
},
"runkitExampleFilename": "./runkit-example.js",
"types": "types/index.d.ts"
}