package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "css-declaration-sorter",
  3. "version": "4.0.1",
  4. "description": "Sorts CSS declarations fast and automatically in a certain order.",
  5. "main": "src/index.js",
  6. "files": [
  7. "src/index.js",
  8. "orders"
  9. ],
  10. "scripts": {
  11. "test": "node tests/test.js",
  12. "test:benchmark": "node tests/benchmark/benchmark.js",
  13. "test:ci": "npm test && npm run lint -- --max-warnings 0",
  14. "lint": "eslint src/*.js tests/*.js",
  15. "preversion": "npm test",
  16. "scrape": "node src/property-scraper"
  17. },
  18. "dependencies": {
  19. "postcss": "^7.0.1",
  20. "timsort": "^0.3.0"
  21. },
  22. "devDependencies": {
  23. "benchmark": "^2.1.4",
  24. "eslint": "^5.0.0",
  25. "tape": "^4.2.1"
  26. },
  27. "engines": {
  28. "node": ">4"
  29. },
  30. "repository": {
  31. "type": "git",
  32. "url": "https://github.com/Siilwyn/css-declaration-sorter.git"
  33. },
  34. "author": "Selwyn <talk@selwyn.cc> (https://selwyn.cc/)",
  35. "license": "MIT",
  36. "keywords": [
  37. "postcss",
  38. "postcss-plugin",
  39. "css",
  40. "declaration",
  41. "sorter",
  42. "property",
  43. "order"
  44. ]
  45. }