package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "object-hash",
  3. "version": "1.3.1",
  4. "description": "Generate hashes from javascript objects in node and the browser.",
  5. "homepage": "https://github.com/puleos/object-hash",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://github.com/puleos/object-hash"
  9. },
  10. "keywords": [
  11. "object",
  12. "hash",
  13. "sha1",
  14. "md5"
  15. ],
  16. "bugs": {
  17. "url": "https://github.com/puleos/object-hash/issues"
  18. },
  19. "scripts": {
  20. "test": "node ./node_modules/.bin/mocha test",
  21. "prepublish": "gulp dist"
  22. },
  23. "author": "Scott Puleo <puleos@gmail.com>",
  24. "license": "MIT",
  25. "devDependencies": {
  26. "browserify": "^13.0.0",
  27. "gulp": "^3.9.0",
  28. "gulp-browserify": "^0.5.1",
  29. "gulp-coveralls": "^0.1.4",
  30. "gulp-exec": "^2.1.2",
  31. "gulp-istanbul": "^0.10.3",
  32. "gulp-jshint": "^2.0.0",
  33. "gulp-mocha": "^2.2.0",
  34. "gulp-rename": "^1.2.0",
  35. "gulp-uglify": "^1.5.1",
  36. "jshint": "^2.8.0",
  37. "jshint-stylish": "^2.1.0",
  38. "karma": "^0.13.15",
  39. "karma-chrome-launcher": "^0.2.2",
  40. "karma-firefox-launcher": "^0.1.7",
  41. "karma-mocha": "^0.2.1",
  42. "karma-phantomjs-launcher": "^0.2.1",
  43. "mocha": "^2.3.4",
  44. "phantomjs": "^1.9.19"
  45. },
  46. "engines": {
  47. "node": ">= 0.10.0"
  48. },
  49. "main": "./index.js",
  50. "browser": "./dist/object_hash.js"
  51. }