Skip to content

Commit

Permalink
fixed dev dependency links
Browse files Browse the repository at this point in the history
  • Loading branch information
dsheiko committed Mar 19, 2015
1 parent aff1939 commit 414050a
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 7 deletions.
10 changes: 5 additions & 5 deletions Gruntfile.js
@@ -1,11 +1,11 @@
/*jshint node:true */
module.exports = function(grunt) {

grunt.loadNpmTasks("grunt-contrib-jshint");
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks("grunt-contrib-jscs");
grunt.loadNpmTasks( "grunt-contrib-cjsc" );
grunt.loadNpmTasks("grunt-contrib-qunit");
grunt.loadNpmTasks( "grunt-contrib-jshint" );
grunt.loadNpmTasks( "grunt-contrib-clean" );
grunt.loadNpmTasks( "grunt-jscodesniffer" );
grunt.loadNpmTasks( "grunt-cjsc" );
grunt.loadNpmTasks( "grunt-contrib-qunit" );
grunt.loadNpmTasks( "grunt-contrib-watch" );


Expand Down
8 changes: 8 additions & 0 deletions README.md
@@ -1,5 +1,8 @@
HTML5 Form Shim
==============

[![NPM](https://nodei.co/npm/html5formshim.png)](https://nodei.co/npm/html5formshim/)

[![Build Status](https://travis-ci.org/dsheiko/HTML5-Form-Shim.png)](https://travis-ci.org/dsheiko/HTML5-Form-Shim)

* The project site: https://github.com/dsheiko/HTML5-Form-Shim
Expand All @@ -21,6 +24,11 @@ To enable the shim you simply mark forms with `data-enable-shim="true"` while ru
</form>
```

You can also install the library by using Bower:

```bash
bower install html5formshim --save
```

See details on how to use HTML5 form at http://www.html5rocks.com/en/tutorials/forms/html5forms/

Expand Down
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -11,12 +11,12 @@
"main": "./build/jquery.html5form",
"devDependencies": {
"grunt": "~0.4.1",
"grunt-cjsc": ">=1.0.0",
"grunt-cjsc": "^1.0.2",
"grunt-contrib-clean": "*",
"grunt-contrib-jshint": "~0.4.3",
"grunt-contrib-qunit": "~0.2.1",
"grunt-contrib-watch": "~0.4.4",
"grunt-jscodesniffer": ">=0.1.10",
"grunt-jscodesniffer": "^0.1.10",
"qunitjs": "1.x"
},
"scripts": {
Expand Down

0 comments on commit 414050a

Please sign in to comment.