package.json
{
"name": "node-7z",
"version": "4.0.0",
"description": "A Node.js wrapper for 7-Zip with platform binaries",
"type": "module",
"main": "./src/main.js",
"scripts": {
"test": "npx mocha --reporter=spec \"test/**/*.spec.js\" --timeout=0",
"test-unit": "npx mocha --reporter=spec \"test/unit/*.spec.js\"",
"test-unit-coverage": "npx c8 --reporter=html npm run test-unit",
"test-func": "npx mocha --reporter=spec \"test/func/*.spec.js\" --timeout=0",
"test-func-coverage": "npx c8 --reporter=html npm run test-func",
"test-debug": "DEBUG=node-7z npm run test",
"test-coverage": "npx c8 --reporter=lcov npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/jliben/node-7z.git"
},
"keywords": [
"node",
"7z",
"7za",
"7zr",
"p7zip",
"7zip",
"wrapper"
],
"author": "Quentin Rossetti <quentin.rossetti@gmail.com>",
"contributors": [
{"name": "Jessé LIBEN", "email": "jliben@gmail.com"}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/quentinrossetti/node-7zip/issues"
},
"homepage": "https://github.com/quentinrossetti/node-7zip.git",
"engines": {
"node": ">=12"
},
"dependencies": {
"debug": "^4.3.4",
"lodash.defaultsdeep": "^4.6.1",
"lodash.defaultto": "^4.14.0",
"lodash.flattendeep": "^4.4.0",
"lodash.isempty": "^4.4.0",
"lodash.negate": "^3.0.2",
"normalize-path": "^3.0.0",
"split2": "^4.1.0"
},
"devDependencies": {
"c8": "^7.11.0",
"chai": "^4.3.4",
"fs-readdir-recursive": "^1.1.0",
"mocha": "^9.2.0",
"rimraf": "^3.0.2",
"standard": "^16.0.4"
}
}