Skip to content

Commit

Permalink
Added gitignore and package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
Blackbaud-MatthewAbbas committed Apr 19, 2017
1 parent be50772 commit a2eaf8a
Show file tree
Hide file tree
Showing 2 changed files with 83 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

24 changes: 24 additions & 0 deletions package.json
@@ -0,0 +1,24 @@
{
"name": "microedge-goapi-sample",
"version": "1.0.0",
"description": "- Ensure NodeJS is installed. - Get a user ID and private key that can access the GO API. - Get the legacy ID of a Contact in the system. - Execute: `node test.js -u (user ID goes here) -k (private key goes here) -i (contact ID goes here)`",
"main": "test.js",
"dependencies": {
"request": "^2.81.0",
"yargs": "^7.1.0"
},
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blackbaud/microedge-goapi-sample.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/blackbaud/microedge-goapi-sample.git/issues"
},
"homepage": "https://github.com/blackbaud/microedge-goapi-sample#readme"
}

0 comments on commit a2eaf8a

Please sign in to comment.