-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.14 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
{
"name": "postcss-stepped-font-size",
"version": "0.0.6",
"description": "PostCSS plugin to generate stepped font size.",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"postcss-stepped-font-size"
],
"scripts": {
"test": "jest --coverage && eslint ."
},
"author": "Kubilay Melnikov <[email protected]>",
"license": "MIT",
"repository": "https://github.com/kubilaymelnikov/postcss-stepped-font-size",
"engines": {
"node": ">=12.0.0"
},
"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": 2022,
"parser": "@babel/eslint-parser",
"requireConfigFile": false
},
"env": {
"node": true,
"es6": true
},
"extends": [
"eslint:recommended",
"plugin:jest/recommended"
],
"rules": {
"jest/expect-expect": "off"
}
},
"jest": {
"coverageThreshold": {
"global": {
"statements": 100
}
}
}
}