package.json 823 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "character-parser",
  3. "version": "2.2.0",
  4. "description": "Parse JavaScript one character at a time to look for snippets in Templates. This is not a validator, it's just designed to allow you to have sections of JavaScript delimited by brackets robustly.",
  5. "main": "index.js",
  6. "scripts": {
  7. "coverage": "istanbul cover test/index.js",
  8. "test": "node test/index.js"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "https://github.com/ForbesLindesay/character-parser.git"
  13. },
  14. "keywords": [
  15. "parser",
  16. "JavaScript",
  17. "bracket",
  18. "nesting",
  19. "comment",
  20. "string",
  21. "escape",
  22. "escaping"
  23. ],
  24. "author": "ForbesLindesay",
  25. "license": "MIT",
  26. "devDependencies": {
  27. "istanbul": "~0.3.22",
  28. "testit": "~2.0.2"
  29. },
  30. "dependencies": {
  31. "is-regex": "^1.0.3"
  32. }
  33. }