package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {
  2. "name": "cssdb",
  3. "version": "5.1.0",
  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. "repository": "csstools/cssdb",
  9. "homepage": "https://github.com/csstools/cssdb#readme",
  10. "bugs": "https://github.com/csstools/cssdb/issues",
  11. "main": "cssdb.json",
  12. "module": "cssdb.mjs",
  13. "files": [
  14. "cssdb.json",
  15. "cssdb.mjs"
  16. ],
  17. "exports": {
  18. ".": {
  19. "import": "./cssdb.mjs",
  20. "require": "./cssdb.json",
  21. "default": "./cssdb.json"
  22. }
  23. },
  24. "scripts": {
  25. "start": "astro dev",
  26. "prestart": "npm run create-badges",
  27. "prebuild": "npm run create-badges",
  28. "build": "astro build",
  29. "prepublishOnly": "node tasks/esm-converter.mjs",
  30. "create-badges": "node tasks/write-badges.js",
  31. "test": "npm run test:css && npm run test:json",
  32. "test:css": "stylelint src/styles/style.css",
  33. "test:json": "node tasks/test.cjs"
  34. },
  35. "devDependencies": {
  36. "@astropub/webapi": "^0.7.4",
  37. "astro": "^0.22.1",
  38. "browserslist": "^4.19.1",
  39. "caniuse-lite": "^1.0.30001292",
  40. "fse": "^4.0.1",
  41. "postcss": "^8.4.5",
  42. "postcss-preset-env": "^7.1.0",
  43. "pre-commit": "^1.2.2",
  44. "stylelint": "^14.2.0",
  45. "stylelint-config-standard": "^24.0.0"
  46. },
  47. "stylelint": {
  48. "extends": "stylelint-config-standard",
  49. "rules": {
  50. "indentation": "tab",
  51. "property-no-unknown": [
  52. true,
  53. {
  54. "ignoreProperties": [
  55. "font-smoothing"
  56. ]
  57. }
  58. ],
  59. "selector-class-pattern": null,
  60. "no-descending-specificity": null,
  61. "number-leading-zero": "never"
  62. }
  63. },
  64. "keywords": [
  65. "css",
  66. "features",
  67. "list",
  68. "specifications",
  69. "stages",
  70. "tc39"
  71. ]
  72. }