package.json 825 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "get-assigned-identifiers",
  3. "description": "get a list of identifiers that are initialised by a JavaScript AST node.",
  4. "version": "1.2.0",
  5. "author": "Renée Kooi <renee@kooi.me>",
  6. "bugs": {
  7. "url": "https://github.com/goto-bus-stop/get-assigned-identifiers/issues"
  8. },
  9. "devDependencies": {
  10. "acorn": "^5.4.1",
  11. "standard": "^10.0.3",
  12. "tape": "^4.8.0"
  13. },
  14. "homepage": "https://github.com/goto-bus-stop/get-assigned-identifiers",
  15. "keywords": [
  16. "ast",
  17. "bindings",
  18. "destructuring",
  19. "identifiers",
  20. "javascript",
  21. "names",
  22. "node"
  23. ],
  24. "license": "Apache-2.0",
  25. "main": "index.js",
  26. "repository": {
  27. "type": "git",
  28. "url": "https://github.com/goto-bus-stop/get-assigned-identifiers.git"
  29. },
  30. "scripts": {
  31. "test": "standard && tape test/*.js"
  32. }
  33. }