-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.49 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
{
"name": "@luehrsenheinrich/postcss-wp-global-styles",
"version": "0.2.2",
"description": "PostCSS plugin to render WordPress global styles from a theme.json file.",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"postcss-wp-global-styles"
],
"scripts": {
"test": "jest --coverage && eslint ."
},
"author": "Hendrik Luehrsen <hl@luehrsen-heinrich.de>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/luehrsenheinrich/postcss-wp-global-styles.git"
},
"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",
"postcss-cli": "^9.1.0"
},
"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
}
}
},
"bugs": {
"url": "https://github.com/luehrsenheinrich/postcss-wp-global-styles/issues"
},
"homepage": "https://github.com/luehrsenheinrich/postcss-wp-global-styles#readme",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"dependencies": {
"lodash": "^4.17.21"
}
}