package.json 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. {
  2. "name": "inputmask",
  3. "version": "5.0.10-beta.11",
  4. "description": "Inputmask is a javascript library which creates an input mask. Inputmask can run against vanilla javascript, jQuery and jqlite.",
  5. "main": "dist/inputmask.js",
  6. "exports": {
  7. ".": "./dist/inputmask.js",
  8. "./dist/*": "./dist/*",
  9. "./lib/*": "./lib/*",
  10. "./micromasks/*": "./micromasks/*"
  11. },
  12. "files": [
  13. "bundle.js",
  14. "Changelog.md",
  15. "dist/",
  16. "lib/",
  17. "micromasks/"
  18. ],
  19. "publishConfig": {
  20. "registry": "https://registry.npmjs.org"
  21. },
  22. "scripts": {
  23. "start": "webpack --progress --watch --config-name main --config webpack.config.js",
  24. "jquery": "webpack --progress --watch --config-name jquery --config webpack.config.js",
  25. "colormask": "webpack --progress --watch --config-name colormask --config webpack.config.js",
  26. "test": "grunt validate"
  27. },
  28. "repository": {
  29. "type": "git",
  30. "url": "https://github.com/RobinHerbots/Inputmask.git"
  31. },
  32. "keywords": [
  33. "form",
  34. "input",
  35. "inputmask",
  36. "jquery",
  37. "jquery-plugin",
  38. "mask",
  39. "plugins"
  40. ],
  41. "author": {
  42. "name": "Robin Herbots",
  43. "url": "https://github.com/RobinHerbots"
  44. },
  45. "license": "MIT",
  46. "bugs": {
  47. "url": "https://github.com/RobinHerbots/Inputmask/issues"
  48. },
  49. "homepage": "https://github.com/RobinHerbots/Inputmask",
  50. "devDependencies": {
  51. "@babel/core": "^7.23.2",
  52. "@babel/eslint-parser": "^7.24.1",
  53. "@babel/plugin-transform-modules-commonjs": "^7.23.0",
  54. "@babel/preset-env": "^7.23.2",
  55. "@babel/preset-typescript": "^7.23.2",
  56. "@robinherbots/grunt-available-tasks": "^0.6.4",
  57. "@robinherbots/grunt-nuget": "^0.3.3",
  58. "babel-loader": "^9.1.3",
  59. "grunt": "^1.6.1",
  60. "grunt-bump": "^0.8.0",
  61. "grunt-contrib-clean": "^2.0.1",
  62. "grunt-contrib-copy": "^1.0.0",
  63. "grunt-eslint": "^24.3.0",
  64. "grunt-karma": "^4.0.2",
  65. "grunt-release": "^0.14.0",
  66. "grunt-webpack": "^6.0.0",
  67. "jquery": "^3.7.1",
  68. "karma": "^6.4.2",
  69. "karma-browserstack-launcher": "^1.6.0",
  70. "karma-chrome-launcher": "^3.2.0",
  71. "karma-qunit": "^4.1.2",
  72. "load-grunt-tasks": "^5.1.0",
  73. "lodash": "^4.17.21",
  74. "qunit": "^2.20.0",
  75. "webpack": "^5.89.0",
  76. "webpack-cli": "^5.1.4",
  77. "prettier": "3.0.0",
  78. "eslint": "^8.46.0",
  79. "eslint-config-prettier": "^8.9.0",
  80. "eslint-config-standard": "^17.1.0",
  81. "eslint-plugin-header": "^3.1.1",
  82. "eslint-plugin-import": "^2.28.0",
  83. "eslint-plugin-n": "^16.0.1",
  84. "eslint-plugin-prettier": "^5.0.0",
  85. "eslint-plugin-promise": "^6.1.1"
  86. }
  87. }