-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
33 lines (33 loc) · 986 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
{
"name": "coolcss",
"version": "1.1.0",
"description": "The last CSS framework I'll (hopefully) ever need to build.",
"main": "index.html",
"files": [
"_src/assets/scss"
],
"scripts": {
"watch:sass": "sass --watch _src/assets/scss:_site/assets/css --no-source-map",
"build:sass": "sass _src/assets/scss:_site/assets/css --no-source-map",
"watch:eleventy": "eleventy --serve",
"build:eleventy": "eleventy",
"start": "npm-run-all build:sass --parallel watch:*",
"build": "npm-run-all build:*"
},
"keywords": [],
"author": "Mike Aparicio <[email protected]> (http://mikeaparicio.com/)",
"license": "MIT",
"devDependencies": {
"@11ty/eleventy": "^0.11.1",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.1.0",
"autoprefixer": "^10.0.4",
"cssnano": "^4.1.10",
"npm-run-all": "^4.1.5",
"postcss": "^8.1.0",
"postcss-cli": "^8.1.0",
"sass": "^1.26.10"
},
"browserslist": [
"> .5%, not IE 11"
]
}