UNPKG

fasttext

Version:

Nodejs binding for Fasttext representation and classification

61 lines (60 loc) 1.5 kB
{ "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" ] }