forked from dachev/node-cld
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.08 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
{
"name": "cld",
"description": "Language detection for Javascript. Based on the CLD2 (Compact Language Detector) library from Google. Highly optimized for space and speed. Runs about 10x faster than other libraries. Detects over 160 languages. Full test coverage. Runs on Linux, OS X, and Windows.",
"keywords": [
"language",
"detect",
"language detection",
"cld",
"cld2"
],
"version": "2.6.0",
"main": "./index",
"dependencies": {
"glob": "^5.0.10",
"node-addon-api": "*",
"rimraf": "^2.4.0",
"underscore": "^1.6.0"
},
"scripts": {
"test": "node test/runner.js",
"postinstall": "node bin/postinstall.js"
},
"author": {
"name": "Blagovest Dachev",
"email": "[email protected]",
"url": "http://www.dachev.com"
},
"contributors": [
"Lovell Fuller <[email protected]>"
],
"repository": {
"type": "git",
"url": "git://github.com/dachev/cld.git"
},
"licenses": [
{
"type": "Apache",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"engines": {
"node": ">=12.0.0"
}
}