-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1.08 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
{
"name": "citrusui.me",
"version": "3.0.0-dev",
"description": "The open source code that powers citrusui.me",
"repository": {
"type": "git",
"url": "git+https://github.com/citrusui/me.git"
},
"scripts": {
"clean": "rm -rf _site/",
"dev": "npm run clean && bundle exec jekyll serve --config _config.dev.yml",
"firebase": "npm run clean && npm run prod && npx firebase deploy",
"jekyll": "bundle exec jekyll build",
"lint": "npx sass-lint -c .sass-lint.yml \"_sass/*.scss\" -v -q",
"min": "npx html-minifier -c minify.json --input-dir _site/ --output-dir _site/ --file-ext html",
"prod": "export JEKYLL_ENV=production && npm run jekyll && npm run min",
"prepublishOnly": "npm run clean && npm run lint && npm run prod && npx firebase deploy"
},
"author": "Avery Magnotti <averymagnotti@outlook.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/citrusui/me/issues"
},
"homepage": "https://citrusui.me",
"devDependencies": {
"firebase-tools": "^5.0.1",
"html-minifier": "^3.5.20",
"sass-lint": "^1.12.1"
}
}