-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.42 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
{
"name": "fasttext-lid",
"version": "1.1.0",
"description": "Language Identification with Facebook FastText",
"keywords": [ "fasttext", "language", "identification", "lid" ],
"main": "fasttext-lid-api.js",
"repository": {
"type": "git",
"url": "git+https://github.com/rse/fasttext-lid.git"
},
"author": {
"name": "Dr. Ralf S. Engelschall",
"email": "[email protected]",
"url": "http://engelschall.com"
},
"license": "MIT",
"homepage": "https://github.com/rse/fasttext-lid",
"bugs": "https://github.com/rse/fasttext-lid/issues",
"devDependencies": {
"eslint": "8.49.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-node": "11.1.0"
},
"dependencies": {
"npm-install-fetch": "1.3.8",
"fast-text": "1.0.3"
},
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"prepublishOnly": "eslint --config eslint.yaml fasttext-lid-*.js",
"install": "npm-install-fetch"
},
"npm-install-fetch": {
"name": "FastText LID-176 model",
"input": "https://dl.fbaipublicfiles.com/fasttext/supervised-models/lid.176.bin",
"output": "fasttext-lid-model.bin"
}
}