package.json 937 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "matchdep",
  3. "description": "Use micromatch to filter npm module dependencies by name.",
  4. "version": "2.0.0",
  5. "homepage": "https://github.com/tkellen/js-matchdep",
  6. "author": {
  7. "name": "Tyler Kellen",
  8. "url": "http://goingslowly.com/"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "git://github.com/tkellen/js-matchdep.git"
  13. },
  14. "bugs": {
  15. "url": "https://github.com/tkellen/js-matchdep/issues"
  16. },
  17. "license": "MIT",
  18. "main": "lib/matchdep",
  19. "engines": {
  20. "node": ">= 0.10.0"
  21. },
  22. "scripts": {
  23. "test": "grunt"
  24. },
  25. "dependencies": {
  26. "findup-sync": "^2.0.0",
  27. "micromatch": "^3.0.4",
  28. "resolve": "^1.4.0",
  29. "stack-trace": "0.0.10"
  30. },
  31. "devDependencies": {
  32. "grunt": "^1.0.1",
  33. "grunt-contrib-jshint": "^1.1.0",
  34. "grunt-contrib-nodeunit": "^1.0.0"
  35. },
  36. "keywords": [
  37. "package.json",
  38. "dependencies",
  39. "devDependencies",
  40. "peerDependencies"
  41. ]
  42. }