package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "postcss-place",
  3. "version": "7.0.3",
  4. "description": "Use a place-* shorthand for align-* and justify-* in CSS",
  5. "author": "Jonathan Neal <jonathantneal@hotmail.com>",
  6. "license": "CC0-1.0",
  7. "homepage": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-place#readme",
  8. "bugs": "https://github.com/csstools/postcss-plugins/issues",
  9. "main": "dist/index.cjs",
  10. "module": "dist/index.mjs",
  11. "files": [
  12. "CHANGELOG.md",
  13. "LICENSE.md",
  14. "README.md",
  15. "dist"
  16. ],
  17. "scripts": {
  18. "build": "rollup -c ../../rollup/default.js",
  19. "clean": "node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"",
  20. "lint": "eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern",
  21. "prepublishOnly": "npm run clean && npm run build && npm run test",
  22. "stryker": "stryker run --logLevel error",
  23. "test": "postcss-tape --ci && npm run test:exports",
  24. "test:exports": "node ./test/_import.mjs && node ./test/_require.cjs"
  25. },
  26. "engines": {
  27. "node": "^12 || ^14 || >=16"
  28. },
  29. "dependencies": {
  30. "postcss-value-parser": "^4.2.0"
  31. },
  32. "devDependencies": {
  33. "postcss": "^8.3.6",
  34. "postcss-tape": "^6.0.1"
  35. },
  36. "peerDependencies": {
  37. "postcss": "^8.3"
  38. },
  39. "keywords": [
  40. "postcss",
  41. "css",
  42. "postcss-plugin",
  43. "shorthands",
  44. "alignments",
  45. "justifies",
  46. "justify",
  47. "aligns",
  48. "contents",
  49. "selfs"
  50. ],
  51. "repository": {
  52. "type": "git",
  53. "url": "https://github.com/csstools/postcss-plugins.git",
  54. "directory": "plugins/postcss-place"
  55. },
  56. "volta": {
  57. "extends": "../../package.json"
  58. }
  59. }