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.

63 lines
1.5 KiB

  1. {
  2. "name": "postcss-nesting",
  3. "version": "7.0.1",
  4. "description": "Nest style rules inside each other",
  5. "author": "Jonathan Neal <jonathantneal@hotmail.com>",
  6. "license": "CC0-1.0",
  7. "repository": "jonathantneal/postcss-nesting",
  8. "homepage": "https://github.com/jonathantneal/postcss-nesting#readme",
  9. "bugs": "https://github.com/jonathantneal/postcss-nesting/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": "echo 'Running tests...'; npm run test:js && npm run test:tape",
  20. "test:js": "eslint *.js lib/*.js --cache --ignore-path .gitignore --quiet",
  21. "test:tape": "postcss-tape"
  22. },
  23. "engines": {
  24. "node": ">=6.0.0"
  25. },
  26. "dependencies": {
  27. "postcss": "^7.0.2"
  28. },
  29. "devDependencies": {
  30. "@babel/core": "^7.0.0",
  31. "@babel/preset-env": "^7.0.0",
  32. "babel-eslint": "^9.0.0",
  33. "babel-plugin-array-includes": "^2.0.3",
  34. "eslint": "^5.6.0",
  35. "eslint-config-dev": "^2.0.0",
  36. "postcss-tape": "^2.2.0",
  37. "pre-commit": "^1.2.2",
  38. "rollup": "^0.66.0",
  39. "rollup-plugin-babel": "^4.0.1"
  40. },
  41. "eslintConfig": {
  42. "extends": "dev",
  43. "parser": "babel-eslint"
  44. },
  45. "keywords": [
  46. "postcss",
  47. "css",
  48. "postcss-plugin",
  49. "atrules",
  50. "child",
  51. "children",
  52. "cssnext",
  53. "nested",
  54. "nestings",
  55. "rules",
  56. "selectors",
  57. "syntax",
  58. "specifications",
  59. "specs",
  60. "w3c",
  61. "csswg"
  62. ]
  63. }