-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
60 lines (60 loc) · 1.46 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
{
"name": "fasttext",
"version": "1.0.0",
"description": "Nodejs binding for Fasttext representation and classification",
"main": "index.js",
"types": "index.d.ts",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"config": "node-pre-gyp configure",
"build": "node-pre-gyp rebuild",
"install": "node-pre-gyp install --fallback-to-build",
"test": "tape test/start.js | tap-spec",
"publish-binary": "git commit --allow-empty -m \"[publish binary]\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/vunb/node-fasttext.git"
},
"keywords": [
"vntk",
"fasttext",
"node-fasttext"
],
"author": "vunb",
"license": "MIT",
"bugs": {
"url": "https://github.com/vunb/node-fasttext/issues"
},
"homepage": "https://github.com/vunb/node-fasttext#readme",
"binary": {
"module_name": "fasttext",
"module_path": "./lib/binding/{node_napi_label}",
"remote_path": "{version}",
"package_name": "{module_name}-{platform}-{arch}-{node_napi_label}.tar.gz",
"host": "https://github.com/vunb/node-fasttext/releases/download/",
"napi_versions": [
1,
3
]
},
"dependencies": {
"node-addon-api": "^1.6.3",
"node-pre-gyp": "^0.13.0"
},
"devDependencies": {
"node-gyp": "^4.0.0",
"node-pre-gyp-github": "^1.4.3",
"tap-spec": "^5.0.0",
"tape": "^4.11.0"
},
"files": [
"src",
"fastText/src",
"index.js",
"index.d.ts",
"binding.gyp"
]
}