package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "arch",
  3. "description": "Better `os.arch()` for node and the browser -- detect OS architecture",
  4. "version": "2.1.1",
  5. "author": {
  6. "name": "Feross Aboukhadijeh",
  7. "email": "feross@feross.org",
  8. "url": "http://feross.org/"
  9. },
  10. "browser": "browser.js",
  11. "bugs": {
  12. "url": "https://github.com/feross/arch/issues"
  13. },
  14. "devDependencies": {
  15. "airtap": "0.0.7",
  16. "standard": "*",
  17. "tape": "^4.0.0"
  18. },
  19. "homepage": "https://github.com/feross/arch",
  20. "keywords": [
  21. "browser",
  22. "browserify",
  23. "arch",
  24. "cpu info",
  25. "cpus",
  26. "architecture",
  27. "navigator.platform",
  28. "x64",
  29. "x86",
  30. "64 bit",
  31. "32 bit"
  32. ],
  33. "license": "MIT",
  34. "main": "index.js",
  35. "repository": {
  36. "type": "git",
  37. "url": "git://github.com/feross/arch.git"
  38. },
  39. "scripts": {
  40. "test": "standard && npm run test-node && npm run test-browser",
  41. "test-browser": "airtap -- test/*.js",
  42. "test-browser-local": "airtap --local -- test/*.js",
  43. "test-node": "tape test/*.js"
  44. }
  45. }