Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 

79 wiersze
1.7 KiB

  1. {
  2. "name": "dotenv-webpack",
  3. "description": "A simple webpack plugin to support dotenv.",
  4. "version": "8.1.0",
  5. "main": "index.js",
  6. "scripts": {
  7. "precommit": "npm run lint",
  8. "prepush": "npm t",
  9. "lint": "standard",
  10. "predoc": "rimraf docs",
  11. "doc": "jsdoc src/index.js -d docs",
  12. "pretest": "npm run build",
  13. "test": "jest",
  14. "prebuild": "rimraf dist",
  15. "build": "babel --copy-files --out-dir dist src",
  16. "travis": "npm run lint && npm t"
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "https://github.com/mrsteele/dotenv-webpack.git"
  21. },
  22. "jest": {
  23. "coverageDirectory": "./coverage/",
  24. "collectCoverage": true,
  25. "watchPathIgnorePatterns": [
  26. "output/.*?"
  27. ]
  28. },
  29. "keywords": [
  30. "dotenv",
  31. "env",
  32. "safe",
  33. "environment",
  34. "dotenv-safe",
  35. "variables",
  36. "process",
  37. "process.env",
  38. "webpack",
  39. "plugin"
  40. ],
  41. "author": "Matt Steele <matt@omnionline.us> (http://omnionline.us/)",
  42. "license": "MIT",
  43. "bugs": {
  44. "url": "https://github.com/mrsteele/dotenv-webpack/issues"
  45. },
  46. "homepage": "https://github.com/mrsteele/dotenv-webpack#readme",
  47. "engines": {
  48. "node": ">=10"
  49. },
  50. "peerDependencies": {
  51. "webpack": "^4 || ^5"
  52. },
  53. "dependencies": {
  54. "dotenv-defaults": "^2.0.2"
  55. },
  56. "devDependencies": {
  57. "@babel/cli": "^7.13.0",
  58. "@babel/core": "^7.13.8",
  59. "@babel/preset-env": "^7.13.9",
  60. "@babel/register": "^7.13.8",
  61. "husky": "^7.0.1",
  62. "jest": "^27.0.4",
  63. "jsdoc": "^3.6.10",
  64. "rimraf": "^3.0.0",
  65. "sinon": "^11.1.1",
  66. "standard": "^16.0.3",
  67. "webpack": "^5.24.3"
  68. },
  69. "files": [
  70. "dist"
  71. ],
  72. "browser": "browser.js",
  73. "babel": {
  74. "presets": [
  75. "@babel/preset-env"
  76. ]
  77. }
  78. }