-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 1.12 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
{
"dependencies": {},
"scripts": {
"css:bundle": "lightningcss --bundle --nesting --targets '> 0.25%, not IE 11' src/index.css -o feo.css",
"css:minified": "lightningcss --bundle --nesting --minify --targets '> 0.25%, not IE 11' src/index.css -o feo.min.css",
"css:docs": "lightningcss --bundle --nesting --minify --targets '> 0.25%, not IE 11' src/index.css -o public/feo.min.css",
"build": "yarn css:bundle && yarn css:minified && yarn css:docs",
"start": "eleventy --serve & yarn css:docs & onchange 'src/**/*.css' -- yarn build",
"build:11ty": "npx @11ty/eleventy && yarn css:docs"
},
"name": "feo-css",
"version": "5.4.3",
"main": "feo.css",
"description": "A tiny CSS framework",
"repository": "https://github.com/vyckes/feo-css.git",
"keywords": [
"cube css",
"css"
],
"author": "Kevin Pennekamp <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vyckes/feo-css/issues"
},
"homepage": "https://github.com/vyckes/feo-css#readme",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"lightningcss-cli": "^1.18.0",
"onchange": "^7.1.0"
}
}