package.json
2.22 KB
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
{
"name": "cssdb",
"version": "7.1.0",
"type": "module",
"description": "A comprehensive list of CSS features and their positions in the process of becoming implemented web standards",
"author": "Jonathan Neal <jonathantneal@hotmail.com>",
"license": "CC0-1.0",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/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-badges.js",
"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"
},
"devDependencies": {
"@mdn/browser-compat-data": "^5.2.12",
"browserslist": "^4.21.4",
"caniuse-lite": "^1.0.30001430",
"glob": "^8.0.3",
"lodash.get": "^4.4.2",
"postcss": "^8.4.18",
"postcss-cli": "^10.0.0",
"postcss-preset-env": "^7.8.2",
"semver": "^7.3.8",
"stylelint": "^14.14.1",
"stylelint-config-standard": "^29.0.0"
},
"stylelint": {
"extends": "stylelint-config-standard",
"rules": {
"indentation": "tab",
"property-no-unknown": [
true,
{
"ignoreProperties": [
"font-smoothing"
]
}
],
"selector-class-pattern": null,
"no-descending-specificity": null,
"value-keyword-case": null,
"number-leading-zero": "never"
}
},
"keywords": [
"css",
"features",
"list",
"specifications",
"stages",
"tc39"
]
}