package.json 926 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "static-eval",
  3. "version": "2.0.2",
  4. "description": "evaluate statically-analyzable expressions",
  5. "main": "index.js",
  6. "dependencies": {
  7. "escodegen": "^1.8.1"
  8. },
  9. "devDependencies": {
  10. "esprima": "^2.7.3",
  11. "tape": "^4.6.0"
  12. },
  13. "scripts": {
  14. "test": "tape test/*.js"
  15. },
  16. "testling": {
  17. "files": "test/*.js",
  18. "browsers": [
  19. "ie/8..latest",
  20. "ff/latest",
  21. "chrome/latest",
  22. "opera/latest",
  23. "safari/latest"
  24. ]
  25. },
  26. "repository": {
  27. "type": "git",
  28. "url": "git://github.com/substack/static-eval.git"
  29. },
  30. "homepage": "https://github.com/substack/static-eval",
  31. "keywords": [
  32. "static",
  33. "eval",
  34. "expression",
  35. "esprima",
  36. "ast",
  37. "abstract",
  38. "syntax",
  39. "tree",
  40. "analysis"
  41. ],
  42. "author": {
  43. "name": "James Halliday",
  44. "email": "mail@substack.net",
  45. "url": "http://substack.net"
  46. },
  47. "license": "MIT"
  48. }