package.json 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. {
  2. "name": "expose-loader",
  3. "version": "4.1.0",
  4. "description": "expose loader module for webpack",
  5. "license": "MIT",
  6. "repository": "webpack-contrib/expose-loader",
  7. "author": "Tobias Koppers @sokra",
  8. "homepage": "https://github.com/webpack-contrib/expose-loader",
  9. "bugs": "https://github.com/webpack-contrib/expose-loader/issues",
  10. "funding": {
  11. "type": "opencollective",
  12. "url": "https://opencollective.com/webpack"
  13. },
  14. "main": "dist/cjs.js",
  15. "engines": {
  16. "node": ">= 14.15.0"
  17. },
  18. "scripts": {
  19. "start": "npm run build -- -w",
  20. "clean": "del-cli dist",
  21. "prebuild": "npm run clean",
  22. "build": "cross-env NODE_ENV=production babel src -d dist --copy-files",
  23. "commitlint": "commitlint --from=master",
  24. "security": "npm audit --production",
  25. "lint:prettier": "prettier --list-different .",
  26. "lint:js": "eslint --cache .",
  27. "lint:spelling": "cspell \"**/*.*\"",
  28. "lint": "npm-run-all -l -p \"lint:**\"",
  29. "test:only": "cross-env NODE_ENV=test jest",
  30. "test:watch": "npm run test:only -- --watch",
  31. "test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage",
  32. "pretest": "npm run lint",
  33. "test": "npm run test:coverage",
  34. "prepare": "husky install && npm run build",
  35. "release": "standard-version"
  36. },
  37. "files": [
  38. "dist"
  39. ],
  40. "peerDependencies": {
  41. "webpack": "^5.0.0"
  42. },
  43. "devDependencies": {
  44. "@babel/cli": "^7.21.0",
  45. "@babel/core": "^7.21.0",
  46. "@babel/preset-env": "^7.20.2",
  47. "@commitlint/cli": "^17.4.4",
  48. "@commitlint/config-conventional": "^17.4.4",
  49. "@webpack-contrib/eslint-config-webpack": "^3.0.0",
  50. "babel-jest": "^29.4.3",
  51. "babel-loader": "^8.3.0",
  52. "cross-env": "^7.0.3",
  53. "cspell": "^6.27.0",
  54. "del": "^6.1.1",
  55. "del-cli": "^4.0.1",
  56. "eslint": "^8.35.0",
  57. "eslint-config-prettier": "^8.6.0",
  58. "eslint-plugin-import": "^2.27.5",
  59. "husky": "^8.0.3",
  60. "jest": "^29.4.3",
  61. "lint-staged": "^12.5.0",
  62. "memfs": "^3.4.13",
  63. "npm-run-all": "^4.1.5",
  64. "prettier": "^2.8.4",
  65. "react": "^18.2.0",
  66. "rx": "^4.1.0",
  67. "standard-version": "^9.3.0",
  68. "styled-components": "^5.3.6",
  69. "webpack": "^5.75.0"
  70. },
  71. "keywords": [
  72. "webpack"
  73. ]
  74. }