package.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "regex-parser",
  3. "version": "2.3.1",
  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. "index.d.ts",
  45. "package-lock.json",
  46. "bloggify.js",
  47. "bloggify.json",
  48. "bloggify/"
  49. ]
  50. }