package.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. {
  2. "name": "inputmask",
  3. "version": "5.0.9-beta.56",
  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/plugin-transform-modules-commonjs": "^7.23.0",
  50. "@babel/preset-env": "^7.23.2",
  51. "@babel/preset-typescript": "^7.23.2",
  52. "@robinherbots/grunt-available-tasks": "^0.6.4",
  53. "@robinherbots/grunt-nuget": "^0.3.3",
  54. "babel-loader": "^9.1.3",
  55. "grunt": "^1.6.1",
  56. "grunt-bump": "^0.8.0",
  57. "grunt-contrib-clean": "^2.0.1",
  58. "grunt-contrib-copy": "^1.0.0",
  59. "grunt-eslint": "^24.3.0",
  60. "grunt-karma": "^4.0.2",
  61. "grunt-release": "^0.14.0",
  62. "grunt-webpack": "^6.0.0",
  63. "jquery": "^3.7.1",
  64. "karma": "^6.4.2",
  65. "karma-browserstack-launcher": "^1.6.0",
  66. "karma-chrome-launcher": "^3.2.0",
  67. "karma-qunit": "^4.1.2",
  68. "load-grunt-tasks": "^5.1.0",
  69. "lodash": "^4.17.21",
  70. "qunit": "^2.20.0",
  71. "webpack": "^5.89.0",
  72. "webpack-cli": "^5.1.4"
  73. }
  74. }