Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adding package.json for 'npm install' #190

Closed
wants to merge 10 commits into from
3 changes: 3 additions & 0 deletions index.js
@@ -0,0 +1,3 @@
var fs = require('fs');

module.exports = fs.readFileSync(__dirname + '/css/skeleton.css', 'utf8');
36 changes: 36 additions & 0 deletions package.json
@@ -0,0 +1,36 @@
{
"name": "Skeleton",
"version": "2.0.4",
"description": "Skeleton is a dead-simple, responsive boilerplate to kickstart any responsive project.",
"keywords": [
"css",
"skeleton",
"responsive",
"boilerplate"
],
"authors": [
"Dave Gamache <hello@davegamache.com> (http://davegamache.com/)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/dhg/Skeleton/issues"
},
"homepage": "http://getskeleton.com/",
"repository": {
"type": "git",
"url": "https://github.com/dhg/Skeleton"
},
"main": "index.js",
"style": "css/skeleton.css",
"files": [
"css/skeleton.css",
"index.js",
"LICENSE.md"
],
"browserify": {
"transform": ["brfs"]
},
"dependencies": {
"brfs": "^1.2.0"
}
}