forked from Yomguithereal/talisman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.55 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "talisman",
"version": "0.20.0",
"description": "A straightforward & modular NLP, machine learning & fuzzy matching library for JavaScript.",
"main": "index.js",
"scripts": {
"check": "npm test && npm run lint",
"clean": "rimraf $npm_package_talisman_folders",
"dist": "npm run clean && babel src --out-dir ./",
"lint": "eslint src test",
"prepublish": "npm run lint && npm test && npm run dist",
"postpublish": "npm run clean",
"test": "mocha --compilers js:babel-core/register -R spec ./test/endpoint.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yomguithereal/talisman.git"
},
"talisman": {
"folders": "classification clustering features hash helpers inflectors keyers keyword-extraction metrics parsers phonetics regexp stats stemmers tag tokenizers"
},
"keywords": [
"bayes",
"bloom filter",
"canberra",
"caverphone",
"chebyshev",
"cologne",
"cosine",
"classifier",
"clustering",
"daitch-mokotoff",
"dice",
"fingerprint",
"fuzzy",
"hamming",
"k-means",
"jaccard",
"jaro",
"lancaster",
"levenshtein",
"lig",
"machine learning",
"metaphone",
"mra",
"natural language processing",
"ngrams",
"nlp",
"nysiis",
"perceptron",
"phonetic",
"porter",
"punkt",
"record linkage",
"schinke",
"sorensen",
"soundex",
"stats",
"tfidf",
"tokenizer",
"tversky",
"vectorizer",
"winkler"
],
"author": {
"name": "Guillaume Plique",
"url": "http://github.com/Yomguithereal"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/yomguithereal/talisman/issues"
},
"homepage": "https://github.com/yomguithereal/talisman#readme",
"devDependencies": {
"@yomguithereal/eslint-config": "^4.0.0",
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-plugin-transform-es2015-classes": "^6.18.0",
"babel-plugin-transform-es2015-destructuring": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"chai": "^4.1.2",
"csv": "^1.1.0",
"csv-parse": "^1.2.0",
"eslint": "^4.7.1",
"leven": "^2.0.0",
"matcha": "^0.7.0",
"mocha": "^3.0.2",
"rimraf": "^2.5.2",
"seedrandom": "^2.4.2"
},
"eslintConfig": {
"extends": "@yomguithereal/eslint-config/es6",
"rules": {
"no-return-assign": 0
}
},
"dependencies": {
"html-entities": "^1.2.0",
"lodash": "^4.6.1",
"long": "^3.1.0",
"mnemonist": "^0.14.0",
"obliterator": "^1.2.0",
"pandemonium": "^1.0.2"
}
}