package.json 598 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "acorn-globals",
  3. "version": "3.1.0",
  4. "description": "Detect global variables in JavaScript using acorn",
  5. "keywords": [
  6. "ast",
  7. "variable",
  8. "name",
  9. "lexical",
  10. "scope",
  11. "local",
  12. "global",
  13. "implicit"
  14. ],
  15. "files": [
  16. "index.js",
  17. "LICENSE"
  18. ],
  19. "dependencies": {
  20. "acorn": "^4.0.4"
  21. },
  22. "devDependencies": {
  23. "testit": "^2.0.2"
  24. },
  25. "scripts": {
  26. "test": "node test"
  27. },
  28. "repository": {
  29. "type": "git",
  30. "url": "https://github.com/ForbesLindesay/acorn-globals.git"
  31. },
  32. "author": "ForbesLindesay",
  33. "license": "MIT"
  34. }