-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 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
{
"name": "@jgarber/eleventy-plugin-postcss",
"version": "3.0.0",
"description": "An Eleventy plugin for processing CSS files with PostCSS.",
"keywords": [
"eleventy",
"eleventy-plugin",
"postcss"
],
"homepage": "https://github.com/jgarber623/eleventy-plugin-postcss",
"bugs": "https://github.com/jgarber623/eleventy-plugin-postcss/issues",
"license": "MIT",
"author": "Jason Garber <jason@sixtwothree.org> (https://sixtwothree.org)",
"type": "module",
"files": [
"index.js"
],
"exports": {
"./package.json": "./package.json",
".": "./index.js"
},
"repository": "https://github.com/jgarber623/eleventy-plugin-postcss",
"scripts": {
"lint": "npx eslint .",
"test": "NODE_V8_COVERAGE=coverage node --experimental-test-coverage --test"
},
"dependencies": {
"postcss": "^8.4.49",
"postcss-load-config": "^6.0.1"
},
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"@jgarber/eslint-config": "^8.0.1"
},
"engines": {
"node": "^20.11.0 || >=21.2.0"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"11ty": {
"compatibility": ">=3.0.0"
}
}