Skip to content

Commit

Permalink
Merge pull request #1 from jdonaldson10/master
Browse files Browse the repository at this point in the history
Add package.json to support NPM install
  • Loading branch information
SamWM committed Mar 9, 2016
2 parents bb9ef0c + d5c0ef9 commit 45a08f7
Show file tree
Hide file tree
Showing 2 changed files with 73 additions and 1 deletion.
39 changes: 38 additions & 1 deletion .gitignore
@@ -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
@@ -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"
]
}

0 comments on commit 45a08f7

Please sign in to comment.