add deps and .gitignore

This commit is contained in:
AJ ONeal 2018-08-12 03:36:55 -06:00
parent 358055bf3a
commit e52a074e66
2 changed files with 46 additions and 1 deletions

40
.gitignore vendored Normal file
View File

@ -0,0 +1,40 @@
node_modules.*
*.*.sw*
# 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
# nyc test coverage
.nyc_output
# 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

View File

@ -16,5 +16,10 @@
"serve-index"
],
"author": "AJ ONeal <coolaj86@gmail.com> (https://coolaj86.com/)",
"license": "(MIT OR Apache-2.0)"
"license": "(MIT OR Apache-2.0)",
"dependencies": {
"accepts": "^1.3.5",
"batch": "^0.6.1",
"mime-types": "^2.1.19"
}
}