Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 38 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

# Created by https://www.gitignore.io/api/osx,windows,bower
# Created by https://www.gitignore.io/api/osx,windows,bower,node

### OSX ###
.DS_Store
Expand Down Expand Up @@ -55,3 +55,40 @@ bower_components
.bower-cache
.bower-registry
.bower-tmp


### Node ###
# Logs
logs
*.log
npm-debug.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 directories
node_modules
jspm_packages

# Optional npm cache directory
.npm

# Optional REPL history
.node_repl_history
35 changes: 35 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"name": "jquery-numeric",
"version": "1.5.0",
"author": {
"name": "SamWM",
"email": "sam.collett@gmail.com",
"url": "https://github.com/SamWM"
},
"description": "jQuery plugin to allow only numbers to be typed into a text box",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/SamWM/jquery-numeric/blob/master/LICENSE"
}
],
"homepage": "https://github.com/SamWM/jquery-numeric",
"main": "jquery.numeric.js",
"repository": {
"type": "git",
"url": "https://github.com/SamWM/jquery-numeric.git"
},
"bugs": {
"url": "https://github.com/SamWM/jquery-numeric/issues"
},
"keywords": [
"jquery",
"jquery-plugin",
"input",
"numeric"
],
"files": [
"jquery.numeric.js",
"LICENSE"
]
}