package.json 713 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "detective",
  3. "description": "find all require() calls by walking the AST",
  4. "version": "5.2.0",
  5. "author": {
  6. "name": "James Halliday",
  7. "email": "mail@substack.net",
  8. "url": "http://substack.net"
  9. },
  10. "bin": "bin/detective.js",
  11. "dependencies": {
  12. "acorn-node": "^1.6.1",
  13. "defined": "^1.0.0",
  14. "minimist": "^1.1.1"
  15. },
  16. "devDependencies": {
  17. "tap": "^10.7.3"
  18. },
  19. "engines": {
  20. "node": ">=0.8.0"
  21. },
  22. "keywords": [
  23. "analyze",
  24. "ast",
  25. "require",
  26. "source"
  27. ],
  28. "license": "MIT",
  29. "main": "index.js",
  30. "repository": {
  31. "type": "git",
  32. "url": "git://github.com/browserify/detective.git"
  33. },
  34. "scripts": {
  35. "test": "tap test/*.js"
  36. }
  37. }