-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
108 lines (108 loc) · 2.52 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
102
103
104
105
106
107
108
{
"name": "postcss-font-family-system-ui",
"version": "5.0.0",
"description": "Use the system-ui font family in CSS",
"author": "Junliang Huang <[email protected]>",
"contributors": [
"Junliang Huang <[email protected]>",
"Jonathan Neal <[email protected]>"
],
"license": "CC0-1.0",
"repository": "JLHwung/postcss-font-family-system-ui",
"homepage": "https://github.com/JLHwung/postcss-font-family-system-ui#readme",
"bugs": "https://github.com/JLHwung/postcss-font-family-system-ui/issues",
"main": "./dist/index.bundle.cjs",
"type": "module",
"exports": {
"import": "./dist/index.bundle.mjs",
"require": "./dist/index.bundle.cjs"
},
"files": [
"dist/"
],
"scripts": {
"build": "rollup -c .rollup.mjs",
"check:js": "eslint *.[cm]js --cache --ignore-path .gitignore --quiet",
"check:spelling": "yaspeller -c package.json --lang en --ignore-uppercase --ignore-roman-numerals --ignore-urls README.md",
"prepublishOnly": "yarn test",
"check": "yarn check:js && yarn check:spelling",
"test": "yarn build && echo 'Running tests...'; yarn check && yarn test:tape",
"test:tape": "postcss-tape --config .tape.cjs"
},
"dependencies": {
"browserslist": "^4.0.0",
"caniuse-lite": "^1.0.30000655"
},
"devDependencies": {
"@babel/core": "7.23.2",
"@babel/eslint-parser": "7.22.15",
"@babel/preset-env": "7.23.2",
"@rollup/plugin-babel": "5.3.1",
"ajv": "8.12.0",
"eslint": "8.53.0",
"eslint-config-dev": "2.0.0",
"postcss": "8.4.31",
"postcss-tape": "6.0.1",
"pre-commit": "1.2.2",
"rollup": "2.38.2",
"yaspeller": "9.1.0"
},
"peerDependencies": {
"postcss": "^8.0.0"
},
"eslintConfig": {
"extends": "dev",
"parser": "@babel/eslint-parser"
},
"keywords": [
"postcss",
"css",
"postcss-plugin",
"ua",
"user",
"agent",
"platform",
"system",
"ui",
"default",
"font",
"font-family",
"family",
"face",
"type",
"typeface"
],
"yaspeller": {
"dictionary": [
"Affirmer",
"Affirmer's",
"babili",
"babelrc",
"browserslist",
"caniuse",
"devDependencies",
"env",
"es6",
"esm",
"Gulpfile",
"greenkeeper",
"Gruntfile",
"istanbul",
"js",
"lockfile",
"npm",
"nyc",
"postcss",
"PostCSS",
"polyfill",
"Refactors",
"rollup",
"std",
"sublicensable",
"travis",
"ui",
"yaspeller",
"^[A-f0-9]{8}$"
]
}
}