-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.54 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.54 KB
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
39
40
41
42
43
44
45
46
{
"name": "coffee-mill",
"version": "0.1.0",
"description": "Website for The Coffee Mill Cafe",
"keywords": [],
"author": {
"name": "Chris Zuber",
"email": "chris@chriszuber.com",
"url": "https://chriszuber.com"
},
"contributors": [],
"homepage": "",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": ""
},
"bugs": {
"url": ""
},
"engines": {
"npm": ">=3.5"
},
"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 install && 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"
},
"dependencies": {
"node-purist": "github:shgysk8zer0/node-purist"
}
}