Skip to content

Commit 7b6963f

Browse files
committed
Updated dependencies, README
1 parent e5b2685 commit 7b6963f

File tree

3 files changed

+15
-8
lines changed

3 files changed

+15
-8
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,10 @@ harvest | Invoked by cron.io periodically to harvest the source XML feed at Ch
3636
The harvest endpoint expects to be supplied an authorization token by the cron.io service.
3737

3838

39-
The MIT License (MIT)
40-
---------------------
39+
License
40+
-------
41+
(The MIT License)
42+
4143
Copyright (c) 2013 Tony Pujals (temporarily until transferred to GSA)
4244

4345
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

app.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ var BSON = mongo.BSONPure;
77
var express = require('express');
88
var http = require('http');
99
var xml2js = require('xml2js');
10+
var weld = require('weld');
11+
var jsdom = require('jsdom');
12+
var fs = require('fs');
1013

1114
var app = express();
1215
app.use(express.bodyParser());

package.json

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
{
2-
"name": "challenge-api",
3-
"version": "0.0.1",
4-
"dependencies": {
5-
"mongodb": ">=1.2.13",
6-
"express": "3.1.x",
7-
"xml2js": ">=0.2.6"
2+
"name": "challenge-api"
3+
, "version": "0.0.1"
4+
, "dependencies": {
5+
"mongodb": ">=1.2.13"
6+
, "express": "3.1.x"
7+
, "xml2js": ">=0.2.6"
8+
, "weld": ">=0.2.2"
9+
, "jsdom": ">=0.5.3"
810
}
911
}

0 commit comments

Comments
 (0)