package.json 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. {
  2. "name": "style-resources-loader",
  3. "version": "1.5.0",
  4. "description": "CSS processor resources loader for webpack",
  5. "author": "Yan Shi <yenshih95@gmail.com> (https://github.com/yenshih)",
  6. "license": "MIT",
  7. "engines": {
  8. "node": ">=8.9"
  9. },
  10. "main": "lib/index.js",
  11. "files": [
  12. "lib",
  13. "src",
  14. "index.d.ts"
  15. ],
  16. "scripts": {
  17. "clean": "rimraf lib coverage test/**/outputs",
  18. "lint": "eslint . --ext .js,.jsx,.ts,.tsx",
  19. "prettier": "prettier {src,test}/**/*.ts --write",
  20. "test": "jest",
  21. "coverage": "npm test -- --coverage",
  22. "posttest": "rimraf test/**/outputs",
  23. "start": "tsc -w",
  24. "build": "tsc -d",
  25. "prepare": "npm run clean && npm run lint && npm run build && npm run coverage"
  26. },
  27. "keywords": [
  28. "webpack",
  29. "loader",
  30. "style",
  31. "css",
  32. "sass",
  33. "scss",
  34. "less",
  35. "stylus",
  36. "inject",
  37. "resource",
  38. "variable",
  39. "mixin"
  40. ],
  41. "repository": "https://github.com/yenshih/style-resources-loader.git",
  42. "homepage": "https://github.com/yenshih/style-resources-loader",
  43. "bugs": "https://github.com/yenshih/style-resources-loader/issues",
  44. "dependencies": {
  45. "glob": "^7.2.0",
  46. "loader-utils": "^2.0.0",
  47. "schema-utils": "^2.7.0",
  48. "tslib": "^2.3.1"
  49. },
  50. "devDependencies": {
  51. "@commitlint/cli": "^15.0.0",
  52. "@commitlint/config-conventional": "^15.0.0",
  53. "@types/glob": "^7.2.0",
  54. "@types/is-promise": "^2.2.0",
  55. "@types/jest": "^27.0.3",
  56. "@types/loader-utils": "^2.0.3",
  57. "@types/node": "^16.11.12",
  58. "@types/webpack": "^4.41.25",
  59. "@types/webpack-merge": "^5.0.0",
  60. "@typescript-eslint/eslint-plugin": "^5.6.0",
  61. "@typescript-eslint/parser": "^5.6.0",
  62. "coveralls": "^3.1.1",
  63. "cross-env": "^7.0.3",
  64. "eslint": "^8.4.1",
  65. "eslint-config-prettier": "^8.3.0",
  66. "eslint-plugin-import": "^2.25.3",
  67. "eslint-plugin-prettier": "^4.0.0",
  68. "husky": "^7.0.4",
  69. "jest": "^27.4.3",
  70. "lint-staged": "^12.1.2",
  71. "prettier": "^2.5.1",
  72. "raw-loader": "^4.0.2",
  73. "ts-jest": "^27.1.0",
  74. "typescript": "^4.5.2",
  75. "webpack": "^4.46.0",
  76. "webpack-merge": "^5.8.0"
  77. },
  78. "peerDependencies": {
  79. "webpack": "^3.0.0 || ^4.0.0 || ^5.0.0"
  80. },
  81. "sideEffects": false
  82. }