package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "postcss-env-function",
  3. "version": "4.0.4",
  4. "description": "Use env() variables in CSS",
  5. "author": "Jonathan Neal <jonathantneal@hotmail.com>",
  6. "license": "CC0-1.0",
  7. "homepage": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-env-function#readme",
  8. "bugs": "https://github.com/csstools/postcss-plugins/issues",
  9. "main": "dist/index.cjs",
  10. "module": "dist/index.mjs",
  11. "files": [
  12. "CHANGELOG.md",
  13. "LICENSE.md",
  14. "README.md",
  15. "dist"
  16. ],
  17. "scripts": {
  18. "build": "rollup -c ../../rollup/default.js",
  19. "clean": "node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"",
  20. "lint": "eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern",
  21. "prepublishOnly": "npm run clean && npm run build && npm run test",
  22. "stryker": "stryker run --logLevel error",
  23. "test": "postcss-tape --ci && npm run test:exports",
  24. "test:exports": "node ./test/_import.mjs && node ./test/_require.cjs"
  25. },
  26. "engines": {
  27. "node": "^12 || ^14 || >=16"
  28. },
  29. "dependencies": {
  30. "postcss-value-parser": "^4.2.0"
  31. },
  32. "devDependencies": {
  33. "postcss": "^8.3.6",
  34. "postcss-tape": "^6.0.1"
  35. },
  36. "peerDependencies": {
  37. "postcss": "^8.3"
  38. },
  39. "keywords": [
  40. "postcss",
  41. "css",
  42. "postcss-plugin",
  43. "environments",
  44. "variables",
  45. "envs",
  46. "constants",
  47. "functions"
  48. ],
  49. "repository": {
  50. "type": "git",
  51. "url": "https://github.com/csstools/postcss-plugins.git",
  52. "directory": "plugins/postcss-env-function"
  53. },
  54. "volta": {
  55. "extends": "../../package.json"
  56. }
  57. }