package.json 818 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "utils-merge",
  3. "version": "1.0.0",
  4. "description": "merge() utility function",
  5. "keywords": [
  6. "util"
  7. ],
  8. "repository": {
  9. "type": "git",
  10. "url": "git://github.com/jaredhanson/utils-merge.git"
  11. },
  12. "bugs": {
  13. "url": "http://github.com/jaredhanson/utils-merge/issues"
  14. },
  15. "author": {
  16. "name": "Jared Hanson",
  17. "email": "jaredhanson@gmail.com",
  18. "url": "http://www.jaredhanson.net/"
  19. },
  20. "licenses": [
  21. {
  22. "type": "MIT",
  23. "url": "http://www.opensource.org/licenses/MIT"
  24. }
  25. ],
  26. "main": "./index",
  27. "dependencies": {
  28. },
  29. "devDependencies": {
  30. "mocha": "1.x.x",
  31. "chai": "1.x.x"
  32. },
  33. "scripts": {
  34. "test": "node_modules/.bin/mocha --reporter spec --require test/bootstrap/node test/*.test.js"
  35. },
  36. "engines": {
  37. "node": ">= 0.4.0"
  38. }
  39. }