-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.16 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
{
"name": "postcss-font-display",
"version": "0.3.0",
"description": "PostCSS plugin add font-display css rule",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"font-display"
],
"scripts": {
"jest": "jest",
"eslint": "eslint --fix .",
"test": "jest && eslint ."
},
"author": "dkrnl <[email protected]>",
"license": "MIT",
"repository": "dkrnl/postcss-font-display",
"bugs": {
"url": "https://github.com/dkrnl/postcss-font-display/issues"
},
"homepage": "https://github.com/dkrnl/postcss-font-display",
"peerDependencies": {
"postcss": "^8.3.0"
},
"devDependencies": {
"clean-publish": "^3.4.2",
"eslint": "^8.0.1",
"eslint-plugin-jest": "^25.2.2",
"jest": "^27.3.1",
"postcss": "^8.3.11"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2017
},
"env": {
"node": true,
"es6": true
},
"extends": ["eslint:recommended", "plugin:jest/recommended"],
"rules": {
"jest/expect-expect": "off"
}
},
"engines": {
"node": ">=12.0.0"
},
"jest": {
"coverageThreshold": {
"global": {
"statements": 100
}
}
}
}