package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "undeclared-identifiers",
  3. "description": "find undeclared identifiers and property accesses in a javascript file.",
  4. "version": "1.1.3",
  5. "author": "Renée Kooi <renee@kooi.me>",
  6. "bugs": {
  7. "url": "https://github.com/goto-bus-stop/undeclared-identifiers/issues"
  8. },
  9. "devDependencies": {
  10. "jquery": "^3.3.1",
  11. "lodash": "^4.17.5",
  12. "nanobench": "^2.1.0",
  13. "standard": "^11.0.0",
  14. "tap-spec": "^5.0.0",
  15. "tape": "^4.0.0",
  16. "three": "^0.92.0"
  17. },
  18. "homepage": "https://github.com/goto-bus-stop/undeclared-identifiers",
  19. "keywords": [
  20. "ast",
  21. "check",
  22. "detect",
  23. "identifiers",
  24. "javascript",
  25. "undeclared"
  26. ],
  27. "license": "Apache-2.0",
  28. "main": "index.js",
  29. "bin": "bin.js",
  30. "repository": {
  31. "type": "git",
  32. "url": "https://github.com/goto-bus-stop/undeclared-identifiers.git"
  33. },
  34. "scripts": {
  35. "test": "standard && tape test/*.js | tap-spec"
  36. },
  37. "dependencies": {
  38. "acorn-node": "^1.3.0",
  39. "dash-ast": "^1.0.0",
  40. "get-assigned-identifiers": "^1.2.0",
  41. "simple-concat": "^1.0.0",
  42. "xtend": "^4.0.1"
  43. }
  44. }