package.json 857 B

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