Skip to content

Commit 45a08f7

Browse files
committed
Merge pull request #1 from jdonaldson10/master
Add package.json to support NPM install
2 parents bb9ef0c + d5c0ef9 commit 45a08f7

File tree

2 files changed

+73
-1
lines changed

2 files changed

+73
-1
lines changed

.gitignore

Lines changed: 38 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

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

44
### OSX ###
55
.DS_Store
@@ -55,3 +55,40 @@ bower_components
5555
.bower-cache
5656
.bower-registry
5757
.bower-tmp
58+
59+
60+
### Node ###
61+
# Logs
62+
logs
63+
*.log
64+
npm-debug.log*
65+
66+
# Runtime data
67+
pids
68+
*.pid
69+
*.seed
70+
71+
# Directory for instrumented libs generated by jscoverage/JSCover
72+
lib-cov
73+
74+
# Coverage directory used by tools like istanbul
75+
coverage
76+
77+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
78+
.grunt
79+
80+
# node-waf configuration
81+
.lock-wscript
82+
83+
# Compiled binary addons (http://nodejs.org/api/addons.html)
84+
build/Release
85+
86+
# Dependency directories
87+
node_modules
88+
jspm_packages
89+
90+
# Optional npm cache directory
91+
.npm
92+
93+
# Optional REPL history
94+
.node_repl_history

package.json

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"name": "jquery-numeric",
3+
"version": "1.5.0",
4+
"author": {
5+
"name": "SamWM",
6+
"email": "sam.collett@gmail.com",
7+
"url": "https://github.com/SamWM"
8+
},
9+
"description": "jQuery plugin to allow only numbers to be typed into a text box",
10+
"licenses": [
11+
{
12+
"type": "MIT",
13+
"url": "https://github.com/SamWM/jquery-numeric/blob/master/LICENSE"
14+
}
15+
],
16+
"homepage": "https://github.com/SamWM/jquery-numeric",
17+
"main": "jquery.numeric.js",
18+
"repository": {
19+
"type": "git",
20+
"url": "https://github.com/SamWM/jquery-numeric.git"
21+
},
22+
"bugs": {
23+
"url": "https://github.com/SamWM/jquery-numeric/issues"
24+
},
25+
"keywords": [
26+
"jquery",
27+
"jquery-plugin",
28+
"input",
29+
"numeric"
30+
],
31+
"files": [
32+
"jquery.numeric.js",
33+
"LICENSE"
34+
]
35+
}

0 commit comments

Comments
 (0)