This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "Wiredcraft", | |
"version": "0.0.3", | |
"main": "index.js", | |
"scripts": { | |
"test": "echo \"Error: no test specified\" && exit 1" | |
}, | |
"repository": { | |
"type": "git", | |
"url": "git://github.com/Wiredcraft/wiredcraft.github.io.git" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var gulp = require('gulp'); | |
var sass = require('gulp-sass'); | |
var concat = require('gulp-concat'); | |
var uglify = require('gulp-uglify'); | |
var minify = require('gulp-minify-css'); | |
var assets = { | |
'js': [ | |
"bower_components/jquery/dist/jquery.js", | |
"bower_components/highlightjs/highlight.pack.js", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<title>Boards!</title> | |
<meta charset='utf-8'/> | |
<meta http-equiv='Content-Language' content='en'/> | |
<meta name='viewport' content='width=device-width, initial-scale=1'/> | |
<meta name='keywords' content='kanban, boards, github'/> | |
<meta name='description' content='Easily manage your GitHub issues on a kanban.'> |