package.json 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. {
  2. "name": "cssdb",
  3. "version": "7.11.2",
  4. "type": "module",
  5. "description": "A comprehensive list of CSS features and their positions in the process of becoming implemented web standards",
  6. "author": "Jonathan Neal <jonathantneal@hotmail.com>",
  7. "license": "CC0-1.0",
  8. "funding": [
  9. {
  10. "type": "opencollective",
  11. "url": "https://opencollective.com/csstools"
  12. },
  13. {
  14. "type": "github",
  15. "url": "https://github.com/sponsors/csstools"
  16. }
  17. ],
  18. "repository": "csstools/cssdb",
  19. "homepage": "https://github.com/csstools/cssdb#readme",
  20. "bugs": "https://github.com/csstools/cssdb/issues",
  21. "main": "cssdb.json",
  22. "module": "cssdb.mjs",
  23. "files": [
  24. "cssdb.json",
  25. "cssdb.mjs"
  26. ],
  27. "exports": {
  28. ".": {
  29. "import": "./cssdb.mjs",
  30. "require": "./cssdb.json",
  31. "default": "./cssdb.json"
  32. }
  33. },
  34. "scripts": {
  35. "start": "node ./tasks/preview-site.mjs",
  36. "prestart": "npm run build",
  37. "build": "node ./tasks/render-site.mjs",
  38. "prebuild": "npm run preparesite",
  39. "prepublishOnly": "npm run populatedb",
  40. "populatedb": "node tasks/populate-db.mjs",
  41. "create-badges": "node tasks/write-stage-badges.mjs && node tasks/write-baseline-badges.mjs",
  42. "preparesite": "npm run populatedb && npm run create-badges && npm run buildcss",
  43. "buildcss": "postcss src/styles/style.css -d dist/styles -m",
  44. "test": "npm run test:css && npm run test:json",
  45. "test:css": "stylelint src/styles/style.css",
  46. "test:json": "node tasks/test.cjs",
  47. "test:doc-links": "node tasks/check-doc-links.mjs"
  48. },
  49. "devDependencies": {
  50. "@mdn/browser-compat-data": "^5.5.14",
  51. "browserslist": "^4.22.3",
  52. "glob": "^10.3.7",
  53. "lodash.get": "^4.4.2",
  54. "postcss": "^8.4.35",
  55. "postcss-cli": "^11.0.0",
  56. "postcss-preset-env": "^9.4.0",
  57. "semver": "^7.6.0",
  58. "stylelint": "^16.2.1",
  59. "stylelint-config-standard": "^36.0.0"
  60. },
  61. "stylelint": {
  62. "extends": "stylelint-config-standard",
  63. "rules": {
  64. "property-no-unknown": [
  65. true,
  66. {
  67. "ignoreProperties": [
  68. "font-smoothing"
  69. ]
  70. }
  71. ],
  72. "selector-class-pattern": null,
  73. "no-descending-specificity": null,
  74. "value-keyword-case": null
  75. }
  76. },
  77. "keywords": [
  78. "css",
  79. "features",
  80. "specifications",
  81. "stages"
  82. ],
  83. "volta": {
  84. "node": "20.10.0"
  85. }
  86. }