-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
37 lines (37 loc) · 1.28 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
{
"name": "jekyll-indieweb",
"version": "2.0.0b",
"description": "A Jekyll theme for the IndieWeb.",
"main": "index.js",
"scripts": {
"jekyll:dev": "bundle exec jekyll serve --livereload --incremental",
"jekyll:prod": "bundle exec jekyll build --incremental",
"css:dev": "postcss assets/css/index.css -m -o assets/css/main.css -w",
"css:prod": "postcss assets/css/index.css -m -o assets/css/main.css",
"dev": "run-p jekyll:dev css:dev",
"prod": "run-p jekyll:prod css:prod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/miklb/jekyll-indieweb.git"
},
"author": "Michael Bishop",
"license": "MIT",
"bugs": {
"url": "https://github.com/miklb/jekyll-indieweb/issues"
},
"homepage": "https://github.com/miklb/jekyll-indieweb#readme",
"devDependencies": {
"browser-sync": "^3.0.3",
"cssnano": "^5.1.13",
"npm-run-all": "^4.1.5",
"outdent": "^0.8.0",
"postcss": "^8.4.16",
"postcss-cli": "^10.0.0",
"postcss-combine-duplicated-selectors": "^10.0.3",
"postcss-custom-properties": "^12.1.9",
"postcss-import": "^15.0.0",
"postcss-nested": "^6.0.0",
"postcss-preset-env": "^7.8.2"
}
}