system_assignation/node_modules/lzma-native/package.json

60 lines
1.5 KiB
JSON
Raw Normal View History

2022-03-24 09:22:39 -04:00
{
"name": "lzma-native",
"version": "6.0.1",
"engines": {
"node": ">=10.0.0"
},
"author": {
"name": "Anna Henningsen",
"email": "anna@addaleax.net"
},
"description": "Provides bindings to the native liblzma library (.xz file format, among others)",
"main": "index",
"bin": {
"lzmajs": "./bin/lzmajs"
},
"dependencies": {
"node-addon-api": "^1.6.0",
"node-pre-gyp": "^0.11.0",
"readable-stream": "^2.3.5",
"rimraf": "^2.7.1"
},
"keywords": [
"lzma",
"compression",
"crc32",
"xz",
"liblzma"
],
"homepage": "https://github.com/addaleax/lzma-native",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/addaleax/lzma-native.git"
},
"scripts": {
"install": "node-pre-gyp install --fallback-to-build && rimraf build",
"test": "mocha --expose-gc -s 1000 -t 5000",
"prepare": "cd deps && 7z x -y xz-5.2.3-windows.7z bin_i686/liblzma.dll bin_x86-64/liblzma.dll include doc/liblzma.def",
"jshint": "jshint ."
},
"gypfile": true,
"bugs": {
"url": "https://github.com/addaleax/lzma-native/issues"
},
"devDependencies": {
"bl": "^4.0.0",
"coveralls": "^3.0.0",
"istanbul": "^0.4.2",
"jshint": "^2.10.3",
"mocha": "^6.2.2"
},
"binary": {
"module_name": "lzma_native",
"module_path": "./binding-v{version}-n-api-{platform}-{arch}/",
"host": "https://node-pre-gyp.addaleax.net",
"remote_path": "./lzma-native/",
"package_name": "lzma_native-v{version}-n-api-{platform}-{arch}.tar.gz"
}
}