Skip to content
This repository has been archived by the owner on Oct 21, 2022. It is now read-only.

Commit

Permalink
initial build pieces
Browse files Browse the repository at this point in the history
  • Loading branch information
jefflembeck committed Jul 11, 2014
1 parent b5be72c commit 09366a8
Show file tree
Hide file tree
Showing 4 changed files with 83 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules
npm-debug.log
tmp
13 changes: 13 additions & 0 deletions .jshintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"curly": true,
"eqeqeq": true,
"immed": true,
"latedef": true,
"newcap": true,
"noarg": true,
"sub": true,
"undef": true,
"boss": true,
"eqnull": true,
"node": true
}
32 changes: 32 additions & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
/*
* formcore
* https://github.com/filamentgroup/formcore
*
* Copyright (c) 2014 Filament Group
* Licensed under the MIT license.
*/

'use strict';

module.exports = function(grunt) {

// Project configuration.
grunt.initConfig({
jshint: {
all: [
'Gruntfile.js'
],
options: {
jshintrc: '.jshintrc'
}
}

});

// These plugins provide necessary tasks.
grunt.loadNpmTasks('grunt-contrib-jshint');

// By default, lint and run all tests.
grunt.registerTask('default', ['jshint']);

};
35 changes: 35 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"name": "formcore",
"description": "A set of form pieces",
"version": "0.1.0",
"homepage": "https://github.com/filamentgroup/formcore",
"author": {
"name": "Filament Group",
"email": "hello@filamentgroup.com",
"url": "http://filamentgroup.com"
},
"repository": {
"type": "git",
"url": "https://github.com/filamentgroup/formcore"
},
"bugs": {
"url": "https://github.com/filamentgroup/formcore/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/filamentgroup/formcore/blob/master/LICENSE-MIT"
}
],
"main": "Gruntfile.js",
"engines": {
"node": ">= 0.8.0"
},
"devDependencies": {
"grunt-contrib-jshint": "~0.6.0",
"grunt": "~0.4.2"
},
"peerDependencies": {
"grunt": "~0.4.2"
}
}

0 comments on commit 09366a8

Please sign in to comment.