-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
101 lines (101 loc) · 2.62 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "cssdb",
"version": "8.1.2",
"type": "module",
"description": "A comprehensive list of CSS features and their positions in the process of becoming implemented web standards",
"license": "MIT-0",
"contributors": [
{
"name": "Antonio Laguna",
"email": "antonio@laguna.es",
"url": "https://antonio.laguna.es"
},
{
"name": "Romain Menke",
"email": "romainmenke@gmail.com"
},
{
"name": "Jonathan Neal",
"email": "jonathantneal@hotmail.com"
}
],
"funding": [
{
"type": "opencollective",
"url": "https://opencollective.com/csstools"
},
{
"type": "github",
"url": "https://github.com/sponsors/csstools"
}
],
"repository": "csstools/cssdb",
"homepage": "https://github.com/csstools/cssdb#readme",
"bugs": "https://github.com/csstools/cssdb/issues",
"main": "cssdb.json",
"module": "cssdb.mjs",
"files": [
"cssdb.json",
"cssdb.mjs"
],
"exports": {
".": {
"import": "./cssdb.mjs",
"require": "./cssdb.json",
"default": "./cssdb.json"
}
},
"scripts": {
"start": "node ./tasks/preview-site.mjs",
"prestart": "npm run build",
"build": "node ./tasks/render-site.mjs",
"prebuild": "npm run preparesite",
"prepublishOnly": "npm run populatedb",
"populatedb": "node tasks/populate-db.mjs",
"create-badges": "node tasks/write-stage-badges.mjs && node tasks/write-baseline-badges.mjs",
"preparesite": "npm run populatedb && npm run create-badges && npm run buildcss",
"buildcss": "postcss src/styles/style.css -d dist/styles -m",
"test": "npm run test:css && npm run test:json",
"test:css": "stylelint src/styles/style.css",
"test:json": "node tasks/test.cjs",
"test:doc-links": "node tasks/check-doc-links.mjs"
},
"devDependencies": {
"@mdn/browser-compat-data": "^5.6.12",
"browserslist": "^4.24.2",
"glob": "^11.0.0",
"lodash.get": "^4.4.2",
"postcss": "^8.4.47",
"postcss-cli": "^11.0.0",
"postcss-preset-env": "^10.0.9",
"semver": "^7.6.3",
"stylelint": "^16.10.0",
"stylelint-config-standard": "^36.0.1",
"web-features": "^2.4.0"
},
"stylelint": {
"extends": "stylelint-config-standard",
"rules": {
"property-no-unknown": [
true,
{
"ignoreProperties": [
"font-smoothing"
]
}
],
"selector-class-pattern": null,
"no-descending-specificity": null,
"value-keyword-case": null
}
},
"keywords": [
"css",
"features",
"specifications",
"stages"
],
"volta": {
"node": "22.11.0"
}
}