package.json 580 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "node-int64",
  3. "description": "Support for representing 64-bit integers in JavaScript",
  4. "url": "http://github.com/broofa/node-int64",
  5. "keywords": [
  6. "math",
  7. "integer",
  8. "int64"
  9. ],
  10. "author": "Robert Kieffer <robert@broofa.com>",
  11. "contributors": [],
  12. "dependencies": {},
  13. "license": "MIT",
  14. "lib": ".",
  15. "main": "./Int64.js",
  16. "version": "0.4.0",
  17. "scripts": {
  18. "test": "nodeunit test.js"
  19. },
  20. "repository": {
  21. "type": "git",
  22. "url": "https://github.com/broofa/node-int64"
  23. },
  24. "devDependencies": {
  25. "nodeunit": "^0.9.0"
  26. }
  27. }