From d5c0ef9797ae4c8677d30db54e5f0234bf5f702d Mon Sep 17 00:00:00 2001 From: James Donaldson Date: Thu, 3 Mar 2016 13:38:22 +0000 Subject: [PATCH] Add package.json --- .gitignore | 39 ++++++++++++++++++++++++++++++++++++++- package.json | 35 +++++++++++++++++++++++++++++++++++ 2 files changed, 73 insertions(+), 1 deletion(-) create mode 100644 package.json diff --git a/.gitignore b/.gitignore index 85b881a..1eab24c 100644 --- a/.gitignore +++ b/.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 @@ -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 diff --git a/package.json b/package.json new file mode 100644 index 0000000..f40a140 --- /dev/null +++ b/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" + ] +}