Scheduled service maintenance on November 22


On Friday, November 22, 2024, between 06:00 CET and 18:00 CET, GIN services will undergo planned maintenance. Extended service interruptions should be expected. We will try to keep downtimes to a minimum, but recommend that users avoid critical tasks, large data uploads, or DOI requests during this time.

We apologize for any inconvenience.

.yarn-metadata.json 3.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "manifest": {
  3. "name": "@webassemblyjs/wasm-parser",
  4. "version": "1.11.1",
  5. "keywords": [
  6. "webassembly",
  7. "javascript",
  8. "ast",
  9. "parser",
  10. "wasm"
  11. ],
  12. "description": "WebAssembly binary format parser",
  13. "main": "lib/index.js",
  14. "module": "esm/index.js",
  15. "scripts": {
  16. "test": "mocha"
  17. },
  18. "author": {
  19. "name": "Sven Sauleau"
  20. },
  21. "license": "MIT",
  22. "dependencies": {
  23. "@webassemblyjs/ast": "1.11.1",
  24. "@webassemblyjs/helper-api-error": "1.11.1",
  25. "@webassemblyjs/helper-wasm-bytecode": "1.11.1",
  26. "@webassemblyjs/ieee754": "1.11.1",
  27. "@webassemblyjs/leb128": "1.11.1",
  28. "@webassemblyjs/utf8": "1.11.1"
  29. },
  30. "repository": {
  31. "type": "git",
  32. "url": "https://github.com/xtuc/webassemblyjs.git"
  33. },
  34. "publishConfig": {
  35. "access": "public"
  36. },
  37. "devDependencies": {
  38. "@webassemblyjs/helper-buffer": "1.11.1",
  39. "@webassemblyjs/helper-test-framework": "1.11.1",
  40. "@webassemblyjs/wasm-gen": "1.11.1",
  41. "@webassemblyjs/wast-parser": "1.11.1",
  42. "mamacro": "^0.0.7",
  43. "wabt": "1.0.12"
  44. },
  45. "gitHead": "3f07e2db2031afe0ce686630418c542938c1674b",
  46. "_registry": "npm",
  47. "_loc": "/home/jovyan/.cache/yarn/v6/npm-@webassemblyjs-wasm-parser-1.11.1-86ca734534f417e9bd3c67c7a1c75d8be41fb199-integrity/node_modules/@webassemblyjs/wasm-parser/package.json",
  48. "readmeFilename": "README.md",
  49. "readme": "# @webassemblyjs/wasm-parser\n\n> WebAssembly binary format parser\n\n## Installation\n\n```sh\nyarn add @webassemblyjs/wasm-parser\n```\n\n## Usage\n\n```js\nimport { decode } from \"@webassemblyjs/wasm-parser\";\nimport { readFileSync } from \"fs\";\n\nconst binary = readFileSync(\"/path/to/module.wasm\");\n\nconst decoderOpts = {};\nconst ast = decode(binary, decoderOpts);\n```\n\n### Decoder options\n\n- `dump`: print dump information while decoding (default `false`)\n- `ignoreCodeSection`: ignore the code section (default `false`)\n- `ignoreDataSection`: ignore the data section (default `false`)\n\n",
  50. "licenseText": "MIT License\n\nCopyright (c) 2018 Sven Sauleau <sven@sauleau.com>\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  51. },
  52. "artifacts": [],
  53. "remote": {
  54. "resolved": "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz#86ca734534f417e9bd3c67c7a1c75d8be41fb199",
  55. "type": "tarball",
  56. "reference": "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz",
  57. "hash": "86ca734534f417e9bd3c67c7a1c75d8be41fb199",
  58. "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==",
  59. "registry": "npm",
  60. "packageName": "@webassemblyjs/wasm-parser",
  61. "cacheIntegrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA== sha1-hspzRTT0F+m9PGfHocddi+QfsZk="
  62. },
  63. "registry": "npm",
  64. "hash": "86ca734534f417e9bd3c67c7a1c75d8be41fb199"
  65. }