package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "license-webpack-plugin",
  3. "version": "4.0.2",
  4. "description": "Outputs licenses from 3rd party libraries to a file",
  5. "main": "dist/index.js",
  6. "typings": "dist/index.d.ts",
  7. "files": [
  8. "/dist/**/*",
  9. "/MIGRATION.md",
  10. "/DOCUMENTATION.md"
  11. ],
  12. "scripts": {
  13. "clean": "rimraf dist",
  14. "format": "cross-env prettier --single-quote --write 'src/**/*.ts'",
  15. "format:e2e": "cross-env prettier --ignore-path .gitignore --single-quote --write 'e2e/**/*.js'",
  16. "lint": "cross-env tslint 'src/**/*.ts' --project tsconfig.json",
  17. "build": "yarn run format && yarn run lint && yarn run clean && tsc",
  18. "prepublishOnly": "yarn run build",
  19. "jest": "jest",
  20. "test:unit": "yarn run build && yarn run jest",
  21. "test:e2e": "yarn run format:e2e && yarn --cwd e2e/webpack-v4 && yarn --cwd e2e/webpack-v5 && jest --config jest.config.e2e.js --runInBand",
  22. "test": "yarn run test:unit && yarn run test:e2e"
  23. },
  24. "repository": {
  25. "type": "git",
  26. "url": "git+ssh://git@github.com/xz64/license-webpack-plugin.git"
  27. },
  28. "keywords": [
  29. "license",
  30. "plugin",
  31. "webpack"
  32. ],
  33. "author": "S K (xz64)",
  34. "license": "ISC",
  35. "bugs": {
  36. "url": "https://github.com/xz64/license-webpack-plugin/issues"
  37. },
  38. "homepage": "https://github.com/xz64/license-webpack-plugin#readme",
  39. "devDependencies": {
  40. "@types/jest": "^22.2.2",
  41. "@types/webpack-sources": "^0.1.5",
  42. "cross-env": "^5.2.0",
  43. "jest": "^22.4.3",
  44. "prettier": "^1.19.1",
  45. "rimraf": "^2.6.2",
  46. "ts-jest": "^22.4.2",
  47. "tslint": "^5.9.1",
  48. "tslint-config-airbnb": "^5.8.0",
  49. "tslint-config-prettier": "^1.10.0",
  50. "typescript": "^3.8.0"
  51. },
  52. "dependencies": {
  53. "webpack-sources": "^3.0.0"
  54. },
  55. "peerDependenciesMeta": {
  56. "webpack": {
  57. "optional": true
  58. },
  59. "webpack-sources": {
  60. "optional": true
  61. }
  62. }
  63. }