-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 943 Bytes
/
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
{
"name": "eleventy-postcss-extension",
"version": "1.0.0",
"description": "Add CSS processing with PostCSS for your Eleventy build.",
"main": ".eleventy.js",
"dependencies": {
"lodash.merge": "^4.6.2",
"postcss": "^8",
"postcss-import": "^14.0.2",
"postcss-load-config": "^3.1.0"
},
"devDependencies": {
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0"
},
"scripts": {
"lint": "eslint ./**.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bart-jaskulski/eleventy-postcss-extension.git"
},
"keywords": [
"eleventy",
"eleventy-plugin"
],
"author": "Bartek Jaskulski",
"license": "MIT",
"bugs": {
"url": "https://github.com/bart-jaskulski/eleventy-postcss-extension/issues"
},
"homepage": "https://github.com/bart-jaskulski/eleventy-postcss-extension#readme",
"eslintConfig": {
"extends": "eslint-config-airbnb-base"
}
}