@endo/zip
Version:
A minimal, synchronous Zip reader and writer
82 lines (81 loc) • 1.87 kB
JSON
{
"name": "@endo/zip",
"version": "1.0.11",
"description": "A minimal, synchronous Zip reader and writer",
"keywords": [
"zip",
"ses",
"endo"
],
"author": "Endo contributors",
"license": "Apache-2.0",
"homepage": "https://github.com/endojs/endo/blob/master/packages/zip/README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/endojs/endo.git",
"directory": "packages/zip"
},
"bugs": {
"url": "https://github.com/endojs/endo/issues"
},
"type": "module",
"main": "./index.js",
"exports": {
".": "./index.js",
"./reader.js": "./reader.js",
"./writer.js": "./writer.js",
"./package.json": "./package.json"
},
"scripts": {
"build": "exit 0",
"prepack": "tsc --build tsconfig.build.json",
"postpack": "git clean -fX \"*.d.ts*\" \"*.d.cts*\" \"*.d.mts*\" \"*.tsbuildinfo\"",
"cover": "c8 ava",
"lint": "yarn lint:types && yarn lint:eslint",
"lint-fix": "eslint --fix .",
"lint:eslint": "eslint .",
"lint:types": "tsc",
"test": "ava"
},
"devDependencies": {
"ava": "^6.1.3",
"babel-eslint": "^10.1.0",
"c8": "^7.14.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.31.0",
"prettier": "^3.5.3",
"typescript": "~5.8.3"
},
"files": [
"./*.d.ts",
"./*.js",
"./*.map",
"LICENSE*",
"SECURITY*",
"dist",
"lib",
"src",
"tools"
],
"publishConfig": {
"access": "public"
},
"eslintConfig": {
"extends": [
"plugin:@endo/internal"
]
},
"ava": {
"files": [
"test/**/*.test.*"
],
"timeout": "2m"
},
"typeCoverage": {
"atLeast": 98.61
},
"gitHead": "03b92fc383da5d8bb4ea993b90149a0db5799d0b"
}