package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {
  2. "name": "postcss-custom-media",
  3. "version": "8.0.0",
  4. "description": "Use Custom Media Queries in CSS",
  5. "author": "Jonathan Neal <jonathantneal@hotmail.com>",
  6. "contributors": [
  7. "Maxime Thirouin"
  8. ],
  9. "license": "MIT",
  10. "repository": "postcss/postcss-custom-media",
  11. "homepage": "https://github.com/postcss/postcss-custom-media#readme",
  12. "bugs": "https://github.com/postcss/postcss-custom-media/issues",
  13. "main": "index.cjs.js",
  14. "module": "index.es.mjs",
  15. "files": [
  16. "index.cjs.js",
  17. "index.es.mjs"
  18. ],
  19. "scripts": {
  20. "prepublishOnly": "npm test",
  21. "pretest": "rollup -c .rollup.js --silent",
  22. "test": "echo 'Running tests...'; npm run test:js && npm run test:tape",
  23. "test:js": "eslint *.js lib/*.js --cache --ignore-path .gitignore --quiet",
  24. "test:tape": "postcss-tape"
  25. },
  26. "engines": {
  27. "node": ">=10.0.0"
  28. },
  29. "peerDependencies": {
  30. "postcss": "^8.1.0"
  31. },
  32. "devDependencies": {
  33. "@babel/core": "^7.11.6",
  34. "@babel/plugin-syntax-dynamic-import": "^7.8.3",
  35. "@babel/preset-env": "^7.11.5",
  36. "@rollup/plugin-babel": "^5.2.1",
  37. "babel-eslint": "^10.1.0",
  38. "eslint": "^7.10.0",
  39. "postcss": "^8.1.0",
  40. "postcss-tape": "^6.0.0",
  41. "pre-commit": "^1.2.2",
  42. "rollup": "^2.28.2"
  43. },
  44. "eslintConfig": {
  45. "env": {
  46. "browser": true,
  47. "es6": true,
  48. "node": true
  49. },
  50. "extends": "eslint:recommended",
  51. "parser": "babel-eslint",
  52. "parserOptions": {
  53. "ecmaVersion": 2018,
  54. "impliedStrict": true,
  55. "sourceType": "module"
  56. }
  57. },
  58. "keywords": [
  59. "postcss",
  60. "css",
  61. "postcss-plugin",
  62. "custom",
  63. "media",
  64. "query",
  65. "queries",
  66. "w3c",
  67. "csswg",
  68. "atrule",
  69. "at-rule",
  70. "specification"
  71. ]
  72. }