-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 796 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 796 Bytes
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
{
"name": "postcss-grid-kiss",
"version": "3.1.0",
"description": "A PostCSS plugin to keep CSS grids stupidly simple",
"main": "lib/main.js",
"author": "Sylvain Pollet-Villard",
"license": "MIT",
"repository": "https://github.com/sylvainpolletvillard/postcss-grid-kiss",
"keywords": [
"postcss",
"postcss-plugin",
"ascii-art",
"visual",
"css",
"grid",
"kiss"
],
"scripts": {
"test": "ava test.js",
"lint": "eslint lib --fix"
},
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"browserslist": "^4.19.1",
"caniuse-lite": "^1.0.30001301",
"postcss-merge-grid-template": "^0.8.1",
"reduce-css-calc": "^2.1.8"
},
"devDependencies": {
"ava": "^4.0.1",
"eslint": "^8.7.0",
"postcss": "^8.4.5"
},
"peerDependencies": {
"postcss": "^8.2.14"
}
}