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.

45 lines
992 B

  1. {
  2. "name": "postcss-initial",
  3. "version": "3.0.2",
  4. "description": "PostCSS plugin to fallback initial keyword.",
  5. "keywords": [
  6. "postcss",
  7. "css",
  8. "postcss-plugin",
  9. "reset"
  10. ],
  11. "author": "Maksim Koretskiy <mr.green.tv@gmail.com>",
  12. "license": "MIT",
  13. "repository": {
  14. "type": "git",
  15. "url": "https://github.com/maximkoretskiy/postcss-initial.git"
  16. },
  17. "dependencies": {
  18. "lodash.template": "^4.5.0",
  19. "postcss": "^7.0.2"
  20. },
  21. "devDependencies": {
  22. "chai": "3.5.0",
  23. "eslint": "^4.18.2",
  24. "mocha": "^3.3.0",
  25. "husky": "^3.0.9",
  26. "standard-version": "^7.0.0"
  27. },
  28. "scripts": {
  29. "lint": "eslint *.js ./lib/ ./test/",
  30. "test": "npm run lint && mocha",
  31. "tdd": "mocha -w --watch-extensions js,json,css",
  32. "release": "standard-version"
  33. },
  34. "husky": {
  35. "hooks": {
  36. "pre-commit": "yarn test",
  37. "pre-push": "yarn test"
  38. }
  39. },
  40. "standard-version": {
  41. "scripts": {
  42. "prerelease": "yarn test"
  43. }
  44. }
  45. }