Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "read-binary-file-arch",
  3. "version": "1.0.6",
  4. "description": "Reads a binary file to determine its CPU architecture.",
  5. "main": "index.js",
  6. "types": "./index.d.ts",
  7. "bin": {
  8. "read-binary-file-arch": "cli.js"
  9. },
  10. "scripts": {
  11. "test": "node test.js"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "git+ssh://git@github.com/samuelmaddock/read-binary-file-arch.git"
  16. },
  17. "keywords": [
  18. "binary",
  19. "file",
  20. "arch",
  21. "process"
  22. ],
  23. "author": "Samuel Maddock",
  24. "license": "MIT",
  25. "bugs": {
  26. "url": "https://github.com/samuelmaddock/read-binary-file-arch/issues"
  27. },
  28. "homepage": "https://github.com/samuelmaddock/read-binary-file-arch#readme",
  29. "dependencies": {
  30. "debug": "^4.3.4"
  31. },
  32. "devDependencies": {
  33. "degit": "^2.8.4"
  34. },
  35. "prettier": {
  36. "trailingComma": "es5",
  37. "tabWidth": 2,
  38. "semi": true,
  39. "singleQuote": true
  40. }
  41. }