-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 927 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 927 Bytes
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
{
"name": "gungnir",
"title": "Jekyll Theme Gungnir",
"description": "The Jekyll version of the blog theme Gungnir.",
"version": "0.0.1",
"author": "Fiveneves",
"license": "MIT",
"homepage": "https://fiveneves.github.io",
"repository": {
"type": "git",
"url": "https://github.com/Fiveneves/Fiveneves.github.io"
},
"bugs": "https://github.com/Fiveneves/Fiveneves.github.io/issues",
"devDependencies": {
"grunt": "^1.0.4",
"grunt-banner": "~0.6.0",
"grunt-contrib-uglify": "~4.0.1",
"grunt-contrib-watch": "~1.1.0"
},
"scripts": {
"bundle": "bundle config set path 'vendor/bundle' && bundle install",
"start": "bundle exec jekyll serve --watch --host 0.0.0.0 --port 4000",
"dev": "grunt watch & npm run start",
"build": "bundle exec jekyll build",
"preview": "cd _site && http-server",
"github": "git push origin master"
}
}