Skip to content

Commit

Permalink
Improvement/Added package.json, .gitignore and yarn.lock for npm inst…
Browse files Browse the repository at this point in the history
…alation
  • Loading branch information
nandomoreirame committed Jun 27, 2017
1 parent 4a5df99 commit 45d8166
Show file tree
Hide file tree
Showing 3 changed files with 95 additions and 0 deletions.
59 changes: 59 additions & 0 deletions .gitignore
@@ -0,0 +1,59 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# Typescript v1 declaration files
typings/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env

29 changes: 29 additions & 0 deletions package.json
@@ -0,0 +1,29 @@
{
"name": "bootstrap-file-input",
"version": "1.0.0",
"description": "Check out the demo of Bootstrap file input at http://gregpike.net/demos/bootstrap-file-input/demo.html",
"main": "bootstrap.file-input.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nandomoreirame/bootstrap-file-input.git"
},
"author": "Gregory Pike",
"keywords": [
"bootstrap",
"jquery",
"input",
"image",
"upload"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/nandomoreirame/bootstrap-file-input/issues"
},
"homepage": "https://github.com/nandomoreirame/bootstrap-file-input#readme",
"dependencies": {
"jquery": "~2.2.4"
}
}
7 changes: 7 additions & 0 deletions yarn.lock
@@ -0,0 +1,7 @@
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1


jquery@~2.2.4:
version "2.2.4"
resolved "https://registry.yarnpkg.com/jquery/-/jquery-2.2.4.tgz#2c89d6889b5eac522a7eea32c14521559c6cbf02"

0 comments on commit 45d8166

Please sign in to comment.