package.json 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. {
  2. "_from": "extract-zip@^2.0.1",
  3. "_id": "extract-zip@2.0.1",
  4. "_inBundle": false,
  5. "_integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==",
  6. "_location": "/extract-zip",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "extract-zip@^2.0.1",
  12. "name": "extract-zip",
  13. "escapedName": "extract-zip",
  14. "rawSpec": "^2.0.1",
  15. "saveSpec": null,
  16. "fetchSpec": "^2.0.1"
  17. },
  18. "_requiredBy": [
  19. "/electron"
  20. ],
  21. "_resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz",
  22. "_shasum": "663dca56fe46df890d5f131ef4a06d22bb8ba13a",
  23. "_spec": "extract-zip@^2.0.1",
  24. "_where": "/Users/xulianxin/Documents/develop/game/TileMatch/TileManor.Lv/TileManor/scripts/electron/node_modules/electron",
  25. "author": {
  26. "name": "max ogden"
  27. },
  28. "bin": {
  29. "extract-zip": "cli.js"
  30. },
  31. "bugs": {
  32. "url": "https://github.com/maxogden/extract-zip/issues"
  33. },
  34. "bundleDependencies": false,
  35. "dependencies": {
  36. "@types/yauzl": "^2.9.1",
  37. "debug": "^4.1.1",
  38. "get-stream": "^5.1.0",
  39. "yauzl": "^2.10.0"
  40. },
  41. "deprecated": false,
  42. "description": "unzip a zip file into a directory using 100% javascript",
  43. "devDependencies": {
  44. "@typescript-eslint/eslint-plugin": "^3.2.0",
  45. "@typescript-eslint/parser": "^3.2.0",
  46. "ava": "^3.5.1",
  47. "eslint": "^7.2.0",
  48. "eslint-config-standard": "^14.1.1",
  49. "eslint-plugin-ava": "^10.2.0",
  50. "eslint-plugin-import": "^2.20.1",
  51. "eslint-plugin-node": "^11.0.0",
  52. "eslint-plugin-promise": "^4.2.1",
  53. "eslint-plugin-standard": "^4.0.1",
  54. "fs-extra": "^9.0.0",
  55. "husky": "^4.2.3",
  56. "lint-staged": "^10.0.9",
  57. "nyc": "^15.0.0",
  58. "tsd": "^0.11.0",
  59. "typescript": "^3.8.3"
  60. },
  61. "engines": {
  62. "node": ">= 10.17.0"
  63. },
  64. "eslintConfig": {
  65. "extends": [
  66. "eslint:recommended",
  67. "plugin:ava/recommended",
  68. "plugin:import/errors",
  69. "plugin:import/warnings",
  70. "plugin:node/recommended",
  71. "plugin:promise/recommended",
  72. "standard"
  73. ]
  74. },
  75. "files": [
  76. "cli.js",
  77. "index.d.ts"
  78. ],
  79. "homepage": "https://github.com/maxogden/extract-zip#readme",
  80. "husky": {
  81. "hooks": {
  82. "pre-commit": "lint-staged"
  83. }
  84. },
  85. "keywords": [
  86. "unzip",
  87. "zip",
  88. "extract"
  89. ],
  90. "license": "BSD-2-Clause",
  91. "lint-staged": {
  92. "*.js": "yarn lint:js --fix",
  93. "*.ts": "yarn lint:ts --fix"
  94. },
  95. "main": "index.js",
  96. "name": "extract-zip",
  97. "optionalDependencies": {
  98. "@types/yauzl": "^2.9.1"
  99. },
  100. "repository": {
  101. "type": "git",
  102. "url": "git+https://github.com/maxogden/extract-zip.git"
  103. },
  104. "scripts": {
  105. "ava": "ava",
  106. "coverage": "nyc ava",
  107. "lint": "yarn lint:js && yarn lint:ts && yarn tsd",
  108. "lint:js": "eslint .",
  109. "lint:ts": "eslint --config .eslintrc.typescript.js --ext .ts .",
  110. "test": "yarn lint && ava",
  111. "tsd": "tsd"
  112. },
  113. "types": "index.d.ts",
  114. "version": "2.0.1"
  115. }