package.json 578 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "pug-lexer",
  3. "version": "5.0.1",
  4. "description": "The pug lexer (takes a string and converts it to an array of tokens)",
  5. "keywords": [
  6. "pug"
  7. ],
  8. "dependencies": {
  9. "character-parser": "^2.2.0",
  10. "is-expression": "^4.0.0",
  11. "pug-error": "^2.0.0"
  12. },
  13. "devDependencies": {
  14. "acorn": "^7.1.1",
  15. "acorn-walk": "^7.1.1"
  16. },
  17. "files": [
  18. "index.js",
  19. "index.d.ts"
  20. ],
  21. "repository": {
  22. "type": "git",
  23. "url": "https://github.com/pugjs/pug/tree/master/packages/pug-lexer"
  24. },
  25. "author": "ForbesLindesay",
  26. "license": "MIT"
  27. }