package.json 2.5 KB

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