package.json 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. {
  2. "name": "inputmask",
  3. "version": "5.0.9-beta.39",
  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. "test": "grunt validate"
  23. },
  24. "repository": {
  25. "type": "git",
  26. "url": "https://github.com/RobinHerbots/Inputmask.git"
  27. },
  28. "keywords": [
  29. "form",
  30. "input",
  31. "inputmask",
  32. "jquery",
  33. "jquery-plugin",
  34. "mask",
  35. "plugins"
  36. ],
  37. "author": {
  38. "name": "Robin Herbots",
  39. "url": "https://github.com/RobinHerbots"
  40. },
  41. "license": "MIT",
  42. "bugs": {
  43. "url": "https://github.com/RobinHerbots/Inputmask/issues"
  44. },
  45. "homepage": "https://github.com/RobinHerbots/Inputmask",
  46. "devDependencies": {
  47. "@babel/core": "^7.23.2",
  48. "@babel/plugin-transform-modules-commonjs": "^7.23.0",
  49. "@babel/preset-env": "^7.23.2",
  50. "@babel/preset-typescript": "^7.23.2",
  51. "@robinherbots/grunt-available-tasks": "^0.6.4",
  52. "@robinherbots/grunt-nuget": "^0.3.3",
  53. "babel-loader": "^9.1.3",
  54. "grunt": "^1.6.1",
  55. "grunt-bump": "^0.8.0",
  56. "grunt-contrib-clean": "^2.0.1",
  57. "grunt-contrib-copy": "^1.0.0",
  58. "grunt-eslint": "^24.3.0",
  59. "grunt-karma": "^4.0.2",
  60. "grunt-release": "^0.14.0",
  61. "grunt-webpack": "^6.0.0",
  62. "jquery": "^3.7.1",
  63. "karma": "^6.4.2",
  64. "karma-browserstack-launcher": "^1.6.0",
  65. "karma-chrome-launcher": "^3.2.0",
  66. "karma-qunit": "^4.1.2",
  67. "load-grunt-tasks": "^5.1.0",
  68. "lodash": "^4.17.21",
  69. "qunit": "^2.20.0",
  70. "webpack": "^5.89.0",
  71. "webpack-cli": "^5.1.4"
  72. }
  73. }