-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.08 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
{
"name": "postcss-remove-google-fonts",
"description": "PostCSS plugin to remove Google Fonts",
"scripts": {
"test": "jest --coverage && eslint ."
},
"keywords": [
"postcss",
"css",
"postcss-plugin",
"postcss-remove-google-fonts"
],
"author": "",
"license": "GPL-3.0-only",
"repository": {
"type": "git",
"url": "https://github.com/0x46616c6b/postcss-remove-google-fonts.git"
},
"url": "https://github.com/0x46616c6b/postcss-remove-google-fonts",
"peerDependencies": {
"postcss": "^8.4.38"
},
"devDependencies": {
"clean-publish": "^4.3.0",
"eslint": "^8.57.0",
"eslint-plugin-jest": "^27.9.0",
"jest": "^29.7.0",
"postcss": "^8.4.38"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2017
},
"env": {
"node": true,
"es6": true
},
"extends": [
"eslint:recommended",
"plugin:jest/recommended"
],
"rules": {
"jest/expect-expect": "off"
}
},
"jest": {
"coverageThreshold": {
"global": {
"statements": 100
}
}
}
}