Skip to content

Commit

Permalink
Release v0.1.44
Browse files Browse the repository at this point in the history
  • Loading branch information
bevacqua committed Jul 16, 2014
0 parents commit d4f919d
Show file tree
Hide file tree
Showing 17 changed files with 3,692 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# editorconfig.org
root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.DS_Store
.env
.bin
Thumbs.db
node_modules
npm-debug.log
3 changes: 3 additions & 0 deletions .jshintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules
bower_components
dist
21 changes: 21 additions & 0 deletions .jshintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"curly": true,
"eqeqeq": true,
"newcap": true,
"noarg": true,
"noempty": true,
"nonew": true,
"sub": true,
"undef": true,
"unused": true,
"trailing": true,
"boss": true,
"eqnull": true,
"strict": true,
"immed": true,
"expr": true,
"latedef": "nofunc",
"quotmark": "single",
"indent": 2,
"node": true
}
3 changes: 3 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
index.html
example
bower.json
20 changes: 20 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
The MIT License (MIT)

Copyright © 2014 Nicolas Bevacqua

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.
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# ripe-date

> Dependency free, opt-in UI, customizable date _(and time)_ picker!
## Install

From npm or Bower.

```shell
npm install --save ripe-date
```

```shell
bower install --save ripe-date
```

Note that if you're using the standalone version, the API is published under the `ripedate` global. If you're using CJS, then it's `require('ripe-date')`.

## License

MIT
30 changes: 30 additions & 0 deletions bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"name": "ripe-date",
"description": "Dependency free, opt-in UI, customizable date _(and time)_ picker!",
"homepage": "https://github.com/bevacqua/ripe-date",
"version": "0.1.44",
"author": {
"name": "Nicolas Bevacqua",
"email": "[email protected]",
"url": "http://ponyfoo.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/bevacqua/ripe-date.git"
},
"bugs": {
"url": "https://github.com/bevacqua/ripe-date/issues"
},
"main": "dist/ripe-date.js",
"ignore": [
".*",
"package.json",
"node_modules",
"src",
"index.html",
"example",
"gulpfile.js"
],
"dependencies": {}
}
Loading

0 comments on commit d4f919d

Please sign in to comment.