-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 37a6e45
Showing
216 changed files
with
41,600 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Logs | ||
logs | ||
*.log | ||
|
||
# Runtime data | ||
pids | ||
*.pid | ||
*.seed | ||
|
||
# Directory for instrumented libs generated by jscoverage/JSCover | ||
lib-cov | ||
|
||
# Coverage directory used by tools like istanbul | ||
coverage | ||
|
||
# Grunt intermediate storage | ||
(http://gruntjs.com/creating-plugins#storing-task-files) | ||
.grunt | ||
|
||
# node-waf configuration | ||
.lock-wscript | ||
|
||
# Compiled binary addons (http://nodejs.org/api/addons.html) | ||
build/Release | ||
|
||
# Dependency directory | ||
# | ||
https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git | ||
node_modules | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
module.exports = function(grunt) { | ||
grunt.initConfig({ | ||
pkg: grunt.file.readJSON('package.json'), | ||
less: { | ||
development: { | ||
options: { | ||
paths: ["./public/assets/"] | ||
}, | ||
files: { | ||
"path/to/result.css": "path/to/source.less" | ||
} | ||
} | ||
} | ||
}); | ||
|
||
grunt.loadNpmTasks('grunt-contrib-less'); | ||
grunt.loadNpmTasks('grunt-contrib-watch'); | ||
}; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright (c) 2015 emersion | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a | ||
copy | ||
of this software and associated documentation files (the "Software"), to | ||
deal | ||
in the Software without restriction, including without limitation the | ||
rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or | ||
sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included | ||
in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS | ||
OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS | ||
IN THE | ||
SOFTWARE. | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"name": "flying-mole-hud", | ||
"version": "0.0.1", | ||
"description": "HUD for flying-mole", | ||
"main": "index.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"author": "emersion", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"grunt": "^0.4.5", | ||
"grunt-contrib-less": "^1.0.0", | ||
"grunt-contrib-watch": "^0.6.1" | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
{ | ||
"name": "bootstrap", | ||
"description": "The most popular front-end framework for developing responsive, mobile first projects on the web.", | ||
"version": "3.3.4", | ||
"keywords": [ | ||
"css", | ||
"js", | ||
"less", | ||
"mobile-first", | ||
"responsive", | ||
"front-end", | ||
"framework", | ||
"web" | ||
], | ||
"homepage": "http://getbootstrap.com", | ||
"main": [ | ||
"less/bootstrap.less", | ||
"dist/css/bootstrap.css", | ||
"dist/js/bootstrap.js", | ||
"dist/fonts/glyphicons-halflings-regular.eot", | ||
"dist/fonts/glyphicons-halflings-regular.svg", | ||
"dist/fonts/glyphicons-halflings-regular.ttf", | ||
"dist/fonts/glyphicons-halflings-regular.woff", | ||
"dist/fonts/glyphicons-halflings-regular.woff2" | ||
], | ||
"ignore": [ | ||
"/.*", | ||
"_config.yml", | ||
"CNAME", | ||
"composer.json", | ||
"CONTRIBUTING.md", | ||
"docs", | ||
"js/tests", | ||
"test-infra" | ||
], | ||
"dependencies": { | ||
"jquery": ">= 1.9.1" | ||
}, | ||
"_release": "3.3.4", | ||
"_resolution": { | ||
"type": "version", | ||
"tag": "v3.3.4", | ||
"commit": "a10eb60bc0b07b747fa0c4ebd8821eb7307bd07f" | ||
}, | ||
"_source": "git://github.com/twbs/bootstrap.git", | ||
"_target": "~3.3.4", | ||
"_originalSource": "bootstrap", | ||
"_direct": true | ||
} |
Oops, something went wrong.