package.json 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. {
  2. "name": "webpack-virtual-modules",
  3. "version": "0.5.0",
  4. "description": "Webpack Virtual Modules",
  5. "main": "lib/index.js",
  6. "scripts": {
  7. "clean": "rm -rf ./lib",
  8. "build": "tsc -p tsconfig.build.json",
  9. "watch": "tsc -p tsconfig.build.json -w",
  10. "tests": "jest",
  11. "tests:watch": "jest --watch",
  12. "test": "yarn lint && yarn tests",
  13. "lint": "eslint --fix src/**/*.ts",
  14. "prepack": "yarn clean && yarn build"
  15. },
  16. "repository": {
  17. "type": "git",
  18. "url": "git+https://github.com/sysgears/webpack-virtual-modules.git"
  19. },
  20. "keywords": [
  21. "webpack",
  22. "webpack-plugin",
  23. "virtual",
  24. "modules"
  25. ],
  26. "author": "SysGears INC",
  27. "license": "MIT",
  28. "bugs": {
  29. "url": "https://github.com/sysgears/webpack-virtual-modules/issues"
  30. },
  31. "homepage": "https://github.com/sysgears/webpack-virtual-modules#readme",
  32. "devDependencies": {
  33. "@babel/core": "^7.4.5",
  34. "@babel/plugin-proposal-class-properties": "^7.4.4",
  35. "@babel/plugin-transform-modules-commonjs": "^7.4.4",
  36. "@babel/preset-typescript": "^7.3.3",
  37. "@babel/register": "^7.5.5",
  38. "@types/jest": "^24.0.6",
  39. "@types/node": "^11.11.3",
  40. "@types/tmp": "^0.1.0",
  41. "@types/webpack": "^4.32.1",
  42. "@typescript-eslint/eslint-plugin": "^5.26.0",
  43. "@typescript-eslint/parser": "^5.26.0",
  44. "babel-jest": "^29.0.3",
  45. "babel-plugin-replace-ts-export-assignment": "^0.0.2",
  46. "eslint": "^8.23.1",
  47. "eslint-config-prettier": "^8.5.0",
  48. "eslint-plugin-jest": "^27.0.4",
  49. "eslint-plugin-prettier": "^4.2.1",
  50. "husky": "^8.0.1",
  51. "jest": "^29.0.3",
  52. "lint-staged": "^13.0.3",
  53. "memory-fs": "^0.5.0",
  54. "prettier": "^2.7.1",
  55. "tmp": "^0.2.1",
  56. "typescript": "^4.8.3",
  57. "webpack": "5"
  58. },
  59. "files": [
  60. "lib",
  61. "src",
  62. "!__tests__"
  63. ],
  64. "publishConfig": {
  65. "main": "lib/index.js",
  66. "types": "lib/index.d.ts"
  67. },
  68. "lint-staged": {
  69. "*.ts": [
  70. "eslint --fix -c tslint.json",
  71. "git add"
  72. ]
  73. },
  74. "prettier": {
  75. "printWidth": 120,
  76. "singleQuote": true,
  77. "parser": "typescript"
  78. },
  79. "husky": {
  80. "pre-commit": "lint-staged"
  81. }
  82. }