-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.62 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
38
{
"name": "chriszuber-portfolio",
"version": "3.3.0",
"description": "A responsive, progressive about / portfolio & blog page built using Jekyll",
"private": true,
"scripts": {
"git:fetch": "git fetch --prune --tags",
"git:submodules": "git submodule update --init --recursive",
"lint": "npm run lint:all",
"lint:all": "npm run lint:js && npm run lint:css",
"lint:js": "eslint .",
"lint:css": "stylelint css/",
"test": "npm run lint",
"build": "npm run build:icons && npm run build:css && npm run build:js",
"build:css": "postcss css/styles/index.css -o css/styles/index.min.css",
"build:js": "webpack",
"build:icons": "svg-sprite-generate -c img/icons.csv -o img/icons.svg",
"build:site": "npm run build:all && JEKYLL_ENV=production bundle exec jekyll build",
"build:site:dev": "bundle exec jekyll build --drafts --unpublished --future --profile --trace --strict_front_matter",
"postinstall": "npm run git:submodules && npm run build",
"start": "npm run serve:dev",
"serve:production": "npm run build && JEKYLL_ENV=production bundle exec jekyll serve",
"serve:dev": "bundle exec jekyll serve --drafts --unpublished --future --profile --trace --strict_front_matter"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shgysk8zer0/shgysk8zer0.github.io.git"
},
"author": "Chris Zuber <chris@chriszuber.com>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/shgysk8zer0/shgysk8zer0.github.io/issues"
},
"homepage": "https://shgysk8zer0.github.io",
"dependencies": {
"node-purist": "github:shgysk8zer0/node-purist"
}
}