package.json 631 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "is-expression",
  3. "version": "4.0.0",
  4. "files": [
  5. "index.js"
  6. ],
  7. "description": "Check if a string is a valid JavaScript expression",
  8. "keywords": [
  9. "javascript",
  10. "expression"
  11. ],
  12. "dependencies": {
  13. "acorn": "^7.1.1",
  14. "object-assign": "^4.1.1"
  15. },
  16. "devDependencies": {
  17. "nyc": "^15.0.1",
  18. "testit": "^3.1.0"
  19. },
  20. "scripts": {
  21. "test": "node test && npm run coverage",
  22. "coverage": "nyc node test.js"
  23. },
  24. "repository": {
  25. "type": "git",
  26. "url": "https://github.com/pugjs/is-expression.git"
  27. },
  28. "author": "Timothy Gu <timothygu99@gmail.com>",
  29. "license": "MIT"
  30. }