package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "regex-parser",
  3. "version": "2.3.0",
  4. "description": "A module that parses a string as regular expression and returns the parsed value.",
  5. "main": "lib/index.js",
  6. "typings": "lib/typings/regex-parser.d.ts",
  7. "scripts": {
  8. "test": "vows --spec --isolate"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "git@github.com:IonicaBizau/regex-parser.js.git"
  13. },
  14. "keywords": [
  15. "regular",
  16. "expressions",
  17. "node",
  18. "parser",
  19. "string"
  20. ],
  21. "author": "Ionică Bizău <bizauionica@gmail.com> (https://ionicabizau.net)",
  22. "license": "MIT",
  23. "bugs": {
  24. "url": "https://github.com/IonicaBizau/regex-parser.js/issues"
  25. },
  26. "homepage": "https://github.com/IonicaBizau/regex-parser.js",
  27. "directories": {
  28. "test": "test"
  29. },
  30. "devDependencies": {
  31. "vows": "^0.8.1"
  32. },
  33. "files": [
  34. "bin/",
  35. "app/",
  36. "lib/",
  37. "dist/",
  38. "src/",
  39. "scripts/",
  40. "resources/",
  41. "menu/",
  42. "cli.js",
  43. "index.js",
  44. "bloggify.js",
  45. "bloggify.json",
  46. "bloggify/"
  47. ]
  48. }