package.json 627 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "acorn-globals",
  3. "version": "7.0.1",
  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": "^8.1.0",
  21. "acorn-walk": "^8.0.2"
  22. },
  23. "devDependencies": {
  24. "testit": "^3.1.0"
  25. },
  26. "scripts": {
  27. "test": "node test"
  28. },
  29. "repository": {
  30. "type": "git",
  31. "url": "https://github.com/ForbesLindesay/acorn-globals.git"
  32. },
  33. "author": "ForbesLindesay",
  34. "license": "MIT"
  35. }