-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
45 lines (45 loc) · 1.11 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
{
"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.10.0",
"main": "./index.js",
"types": "./index.d.ts",
"dependencies": {
"glob": "7",
"node-addon-api": "*",
"underscore": "^1.12.1"
},
"scripts": {
"build": "node-gyp rebuild",
"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"
}
}