-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
33 lines (33 loc) · 876 Bytes
/
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
{
"name": "languagedetect",
"description": "Nodejs language detection library using n-gram",
"types": "index.d.ts",
"keywords": [
"n-gram",
"language",
"language detection"
],
"version": "2.0.0",
"homepage": "http://blog.fgribreau.com/2011/07/week-end-project-nodejs-language.html",
"author": "Francois-Guillaume Ribreau <[email protected]> (http://fgribreau.com)",
"contributors": [
"Ruslan Zavackiy <[email protected]> (http://zavackiy.com)"
],
"main": "index",
"repository": "git://github.com/FGRibreau/node-language-detect.git",
"licenses": [
{
"type": "BSD",
"url": "http://github.com/FGRibreau/node-language-detect/blob/master/LICENSE"
}
],
"scripts": {
"test": "nodeunit test/*.test.js"
},
"devDependencies": {
"nodeunit": ">= 0.5.1"
},
"engines": {
"node": ">= 0.4.8"
}
}