package.json 2.6 KB

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