web 3d图形渲染器
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.

71 lines
1.7 KiB

  1. {
  2. "name": "postcss-browser-comments",
  3. "version": "3.0.0",
  4. "description": "Keep only the CSS you need based on comments and your browserslist",
  5. "author": "Jonathan Neal <csstools@hotmail.com>",
  6. "license": "CC0-1.0",
  7. "repository": "csstools/postcss-browser-comments",
  8. "homepage": "https://github.com/csstools/postcss-browser-comments#readme",
  9. "bugs": "https://github.com/csstools/postcss-browser-comments/issues",
  10. "main": "index.cjs.js",
  11. "module": "index.es.js",
  12. "files": [
  13. "index.cjs.js",
  14. "index.es.js"
  15. ],
  16. "scripts": {
  17. "prepublishOnly": "npm test",
  18. "pretest": "rollup -c .rollup.js --silent",
  19. "test": "npm run test:js && npm run test:tape",
  20. "test:ec": "echint --ignore index.*.js test",
  21. "test:js": "eslint *.js --cache --ignore-path .gitignore --quiet",
  22. "test:tape": "postcss-tape"
  23. },
  24. "engines": {
  25. "node": ">=8.0.0"
  26. },
  27. "dependencies": {
  28. "postcss": "^7"
  29. },
  30. "peerDependencies": {
  31. "browserslist": "^4"
  32. },
  33. "devDependencies": {
  34. "@babel/core": "^7.4.5",
  35. "@babel/preset-env": "^7.4.5",
  36. "babel-eslint": "^10.0.1",
  37. "browserslist": "^4.1.1",
  38. "eslint": "^5.16.0",
  39. "postcss-tape": "^5.0.0",
  40. "pre-commit": "^1.2.2",
  41. "rollup": "^1.12.3",
  42. "rollup-plugin-babel": "^4.3.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. "root": true
  58. },
  59. "keywords": [
  60. "postcss",
  61. "css",
  62. "postcss-plugin",
  63. "browserslists",
  64. "browserlists",
  65. "browsers",
  66. "lists",
  67. "support",
  68. "caniuse",
  69. "target"
  70. ]
  71. }