package.json 617 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "cuint",
  3. "version": "0.2.2",
  4. "description": "Unsigned integers for Javascript",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "mocha",
  8. "prepublish": "node build"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "https://github.com/pierrec/js-cuint"
  13. },
  14. "keywords": [
  15. "C",
  16. "unsigned",
  17. "integer",
  18. "32bits",
  19. "64bits"
  20. ],
  21. "author": "Pierre Curto",
  22. "license": "MIT",
  23. "bugs": {
  24. "url": "https://github.com/pierrec/js-cuint/issues"
  25. },
  26. "homepage": "https://github.com/pierrec/js-cuint",
  27. "devDependencies": {
  28. "minify": "0.2.x",
  29. "mocha": "^2.1.0"
  30. }
  31. }