package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "arch",
  3. "description": "Better `os.arch()` for node and the browser -- detect OS architecture",
  4. "version": "2.2.0",
  5. "author": {
  6. "name": "Feross Aboukhadijeh",
  7. "email": "feross@feross.org",
  8. "url": "https://feross.org"
  9. },
  10. "browser": "browser.js",
  11. "types": "./index.d.ts",
  12. "bugs": {
  13. "url": "https://github.com/feross/arch/issues"
  14. },
  15. "devDependencies": {
  16. "airtap": "^3.0.0",
  17. "standard": "*",
  18. "tape": "^5.0.0"
  19. },
  20. "homepage": "https://github.com/feross/arch",
  21. "keywords": [
  22. "browser",
  23. "browserify",
  24. "arch",
  25. "cpu info",
  26. "cpus",
  27. "architecture",
  28. "navigator.platform",
  29. "x64",
  30. "x86",
  31. "64 bit",
  32. "32 bit"
  33. ],
  34. "license": "MIT",
  35. "main": "index.js",
  36. "repository": {
  37. "type": "git",
  38. "url": "git://github.com/feross/arch.git"
  39. },
  40. "scripts": {
  41. "test": "standard && npm run test-node && npm run test-browser",
  42. "test-browser": "airtap -- test/*.js",
  43. "test-browser-local": "airtap --local -- test/*.js",
  44. "test-node": "tape test/*.js"
  45. },
  46. "funding": [
  47. {
  48. "type": "github",
  49. "url": "https://github.com/sponsors/feross"
  50. },
  51. {
  52. "type": "patreon",
  53. "url": "https://www.patreon.com/feross"
  54. },
  55. {
  56. "type": "consulting",
  57. "url": "https://feross.org/support"
  58. }
  59. ]
  60. }