You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

72 regels
1.9 KiB

  1. {
  2. "name": "@influxframework/esbuild-plugin-postcss2",
  3. "version": "0.1.3",
  4. "description": "Use postcss with esbuild",
  5. "repository": {
  6. "type": "git",
  7. "url": "git+https://github.com/influxframework/esbuild-plugin-postcss2.git"
  8. },
  9. "author": "Marton Lederer <marton@lederer.hu>",
  10. "license": "MIT",
  11. "private": false,
  12. "publishConfig": {
  13. "access": "public"
  14. },
  15. "scripts": {
  16. "build": "cross-env NODE_ENV=production node build.js",
  17. "dev": "cross-env NODE_ENV=development node build.js",
  18. "test": "yarn build && cd test && mocha 'index.js' --no-timeout --exit",
  19. "fmt": "prettier --write .",
  20. "fmt:check": "prettier --check ."
  21. },
  22. "gitHooks": {
  23. "pre-commit": "prettier --write . && git add -A"
  24. },
  25. "files": [
  26. "dist",
  27. "src/modules.d.ts"
  28. ],
  29. "main": "dist/index.js",
  30. "module": "dist/index.esm.js",
  31. "types": "src/modules.d.ts",
  32. "dependencies": {
  33. "autoprefixer": "^10.2.5",
  34. "fs-extra": "^9.1.0",
  35. "less": "^4.x",
  36. "postcss-modules": "^4.0.0",
  37. "resolve-file": "^0.3.0",
  38. "sass": "^1.x",
  39. "stylus": "^0.x",
  40. "tmp": "^0.2.1"
  41. },
  42. "devDependencies": {
  43. "@types/chai": "^4.2.15",
  44. "@types/fs-extra": "^9.0.9",
  45. "@types/less": "^3.0.2",
  46. "@types/mocha": "^8.2.2",
  47. "@types/node": "^14.14.37",
  48. "@types/sass": "^1.16.0",
  49. "@types/stylus": "^0.48.33",
  50. "@types/tmp": "^0.2.0",
  51. "chai": "^4.3.4",
  52. "cross-env": "^7.0.3",
  53. "esbuild": "^0.11.2",
  54. "mocha": "^8.3.2",
  55. "normalize.css": "^8.0.1",
  56. "postcss-import": "^14.0.2",
  57. "prettier": "^2.2.1",
  58. "typescript": "^4.2.3",
  59. "yorkie": "^2.0.0"
  60. },
  61. "peerDependencies": {
  62. "less": "^4.x",
  63. "postcss": "8.x",
  64. "sass": "^1.x",
  65. "stylus": "^0.x"
  66. },
  67. "bugs": {
  68. "url": "https://github.com/influxframework/esbuild-plugin-postcss2/issues"
  69. },
  70. "homepage": "https://github.com/influxframework/esbuild-plugin-postcss2#readme"
  71. }