Skip to content
This repository has been archived by the owner on Apr 17, 2023. It is now read-only.

Commit

Permalink
Merge 6ef0fd7 into c71d398
Browse files Browse the repository at this point in the history
  • Loading branch information
paolobueno committed Dec 7, 2017
2 parents c71d398 + 6ef0fd7 commit 30361e4
Show file tree
Hide file tree
Showing 25 changed files with 65 additions and 124 deletions.
6 changes: 2 additions & 4 deletions client/camera/package.json
Expand Up @@ -34,11 +34,9 @@
"branches": 80
},
"devDependencies": {
"@types/bluebird": "3.5.18",
"@types/chai": "4.0.5",
"@types/chai-as-promised": "7.1.0",
"@types/cordova-plugin-camera": "0.0.3",
"@types/lodash": "4.14.85",
"@types/mocha": "2.2.44",
"@types/proxyquire": "1.3.28",
"@types/sinon": "4.0.0",
Expand All @@ -47,14 +45,14 @@
"del-cli": "1.1.0",
"mocha": "4.0.1",
"nyc": "11.3.0",
"proxyquire": "1.8.0",
"sinon": "4.1.2",
"source-map-support": "0.5.0",
"ts-node": "3.3.0",
"typescript": "2.6.1"
},
"dependencies": {
"b64-to-blob": "1.2.19",
"@types/bluebird": "3.5.18",
"@types/lodash": "4.14.85",
"bluebird": "3.5.1",
"lodash": "4.17.4"
}
Expand Down
8 changes: 2 additions & 6 deletions client/datasync-client/package.json
Expand Up @@ -35,15 +35,10 @@
"access": "public"
},
"devDependencies": {
"@types/bluebird": "3.5.8",
"@types/chai": "4.0.3",
"@types/lodash": "4.14.73",
"@types/mocha": "2.2.41",
"@types/proxyquire": "1.3.27",
"@types/sinon": "4.0.0",
"assert": "1.4.1",
"browserify": "14.4.0",
"browserify-shim": "3.8.14",
"chai": "4.1.1",
"del-cli": "1.1.0",
"mocha": "4.0.1",
Expand All @@ -52,10 +47,11 @@
"sinon": "4.0.1",
"source-map-support": "0.5.0",
"ts-node": "3.3.0",
"tsify": "3.0.1",
"typescript": "2.5.0"
},
"dependencies": {
"@types/bluebird": "3.5.8",
"@types/lodash": "4.14.73",
"@raincatcher/logger": "1.1.1",
"bluebird": "3.5.0",
"fh-sync-js": "1.0.3",
Expand Down
6 changes: 2 additions & 4 deletions client/filestore-client/package.json
Expand Up @@ -34,18 +34,14 @@
"branches": 80
},
"devDependencies": {
"@types/bluebird": "3.5.18",
"@types/chai": "4.0.5",
"@types/chai-as-promised": "7.1.0",
"@types/cordova-plugin-file": "0.0.3",
"@types/cordova-plugin-file-transfer": "0.0.3",
"@types/lodash": "4.14.85",
"@types/mocha": "2.2.44",
"@types/node": "8.0.53",
"@types/proxyquire": "1.3.28",
"@types/sinon": "4.0.0",
"chai": "4.1.2",
"chai-as-promised": "7.1.1",
"del-cli": "1.1.0",
"mocha": "4.0.1",
"nyc": "11.3.0",
Expand All @@ -56,6 +52,8 @@
"typescript": "2.6.1"
},
"dependencies": {
"@types/bluebird": "3.5.18",
"@types/lodash": "4.14.85",
"b64-to-blob": "1.2.19",
"bluebird": "3.5.1",
"lodash": "4.17.4"
Expand Down
1 change: 0 additions & 1 deletion client/filestore-client/test/FileManagerTest.ts
@@ -1,5 +1,4 @@
import * as chai from 'chai';
import * as chaiAsPromise from 'chai-as-promised';
import * as proxyquire from 'proxyquire';
import * as sinon from 'sinon';
import { FileManager } from '../src/FileManager';
Expand Down
18 changes: 6 additions & 12 deletions client/wfm/package.json
Expand Up @@ -39,29 +39,23 @@
"access": "public"
},
"devDependencies": {
"@types/bluebird": "3.5.18",
"@types/chai": "4.0.5",
"@types/chai-as-promised": "7.1.0",
"@types/lodash": "4.14.85",
"@types/mocha": "2.2.44",
"@types/node": "8.0.53",
"@types/shortid": "0.0.29",
"@types/valid-url": "1.0.2",
"del-cli": "1.1.0",
"mocha": "4.0.1",
"nyc": "11.3.0",
"source-map-support": "0.5.0",
"ts-node": "3.3.0",
"typescript": "2.6.1"
"typescript": "2.6.1",
"chai": "4.1.2",
"chai-as-promised": "7.1.1"
},
"dependencies": {
"ajv": "5.5.0",
"@types/bluebird": "3.5.18",
"@types/lodash": "4.14.85",
"bluebird": "3.5.1",
"chai": "4.1.2",
"chai-as-promised": "7.1.1",
"eventemitter3": "2.0.3",
"lodash": "4.17.4",
"shortid": "2.2.8",
"valid-url": "1.0.9"
"lodash": "4.17.4"
}
}
1 change: 0 additions & 1 deletion client/wfm/src/service/WfmService.ts
Expand Up @@ -4,7 +4,6 @@

import * as Promise from 'bluebird';
import * as _ from 'lodash';
import * as shortid from 'shortid';
import { Step } from '../model/Step';
import { StepResult } from '../model/StepResult';
import { WorkFlow } from '../model/WorkFlow';
Expand Down
7 changes: 4 additions & 3 deletions cloud/auth/package.json
Expand Up @@ -36,18 +36,19 @@
"access": "public"
},
"devDependencies": {
"@types/express": "4.0.39",
"@types/mocha": "2.2.44",
"del-cli": "1.1.0",
"mocha": "4.0.1",
"nyc": "11.3.0",
"sinon": "4.1.2",
"source-map-support": "0.5.0",
"ts-node": "3.3.0",
"typescript": "2.6.1"
},
"dependencies": {
"express": "4.16.2",
"@types/express": "4.0.39",
"express": "4.16.2"
},
"peerDependencies": {
"express-session": "1.15.6"
}
}
1 change: 0 additions & 1 deletion cloud/auth/src/EndpointSecurity.ts
Expand Up @@ -3,7 +3,6 @@
*/

import * as express from 'express';
import { SessionOptions } from 'express-session';

/**
* Security interface for Raincatcher authentication middleware
Expand Down
3 changes: 1 addition & 2 deletions cloud/auth/test/EndpointSecurity.ts
@@ -1,11 +1,10 @@
'use strict';
import * as assert from 'assert';
import * as express from 'express';
import { SessionOptions } from 'express-session';
import { EndpointSecurity } from '../src/EndpointSecurity';

class Test implements EndpointSecurity {
public init(app: express.Express, sessionOpts: SessionOptions): void {
public init(app: express.Express): void {
console.info('test');
}
public protect(role?: string | undefined): express.Handler {
Expand Down
13 changes: 6 additions & 7 deletions cloud/datasync/package.json
Expand Up @@ -36,12 +36,7 @@
},
"devDependencies": {
"@raincatcher/logger": "1.1.1",
"@types/body-parser": "1.16.8",
"@types/cors": "2.8.3",
"@types/express": "4.0.39",
"@types/mocha": "2.2.44",
"@types/mongodb": "2.2.16",
"@types/node": "8.0.53",
"@types/proxyquire": "1.3.28",
"del-cli": "1.1.0",
"mocha": "4.0.1",
Expand All @@ -52,9 +47,13 @@
"typescript": "2.6.1"
},
"dependencies": {
"body-parser": "1.18.2",
"cors": "2.8.4",
"@types/express": "4.0.39",
"@types/mongodb": "2.2.16",
"@types/node": "8.0.53",
"express": "4.16.2",
"fh-sync": "1.0.13"
},
"peerDependencies": {
"mongodb": "2.2.33"
}
}
21 changes: 7 additions & 14 deletions cloud/filestore/package.json
Expand Up @@ -35,42 +35,35 @@
"branches": 50
},
"devDependencies": {
"@types/bluebird": "3.5.18",
"@types/chai": "4.0.5",
"@types/chai-as-promised": "7.1.0",
"@types/del": "3.0.0",
"@types/gridfs-stream": "0.5.30",
"@types/mkdirp": "0.5.1",
"@types/mocha": "2.2.44",
"@types/multer": "1.3.6",
"@types/node": "8.0.53",
"@types/proxyquire": "1.3.28",
"chai": "4.1.2",
"chai-as-promised": "7.1.1",
"del": "3.0.0",
"del-cli": "1.1.0",
"mocha": "4.0.1",
"nyc": "11.3.0",
"proxyquire": "1.8.0",
"source-map-support": "0.5.0",
"string-to-stream": "1.1.0",
"ts-node": "3.3.0",
"typescript": "2.6.1"
},
"dependencies": {
"@types/bluebird": "3.5.18",
"@types/mongodb": "2.2.16",
"@types/multer": "1.3.6",
"@types/gridfs-stream": "0.5.30",
"@types/node": "8.0.53",
"@types/mkdirp": "0.5.1",
"@raincatcher/logger": "1.1.1",
"base64-stream": "0.1.3",
"bluebird": "3.5.1",
"express": "4.16.2",
"gridfs-stream": "1.1.1",
"lodash": "4.17.4",
"mkdirp": "0.5.1",
"mongodb": "2.2.33",
"multer": "1.3.0",
"q": "1.5.1",
"s3": "4.4.0",
"shortid": "2.2.8",
"through2": "2.0.3",
"uuid-js": "0.7.5"
"s3": "4.4.0"
}
}
1 change: 0 additions & 1 deletion cloud/filestore/src/FileRoutes.ts
Expand Up @@ -7,7 +7,6 @@ import { promisify } from 'bluebird';
import { Router } from 'express';
import { Request } from 'express';
import { rename } from 'fs';
import * as uuid from 'uuid-js';
import { FileMetadata } from './file-api/FileMetadata';
import { FileStorage } from './file-api/FileStorage';
import * as fileService from './services/FileService';
Expand Down
1 change: 0 additions & 1 deletion cloud/filestore/src/services/FileService.ts
Expand Up @@ -3,7 +3,6 @@
*/

import { getLogger } from '@raincatcher/logger';
import * as base64 from 'base64-stream';
import * as Promise from 'bluebird';
import { Request } from 'express';
import * as fs from 'fs';
Expand Down
16 changes: 5 additions & 11 deletions cloud/passportauth/package.json
Expand Up @@ -37,16 +37,8 @@
},
"devDependencies": {
"@raincatcher/logger": "1.1.1",
"@types/body-parser": "1.16.8",
"@types/chai": "4.0.5",
"@types/cors": "2.8.3",
"@types/express": "4.0.39",
"@types/jsonwebtoken": "7.2.3",
"@types/lodash": "4.14.85",
"@types/mocha": "2.2.44",
"@types/passport": "0.4.1",
"@types/passport-jwt": "3.0.0",
"@types/passport-local": "1.0.32",
"@types/sinon": "4.0.0",
"del-cli": "1.1.0",
"mocha": "4.0.1",
Expand All @@ -57,14 +49,16 @@
"typescript": "2.6.1"
},
"dependencies": {
"@types/express": "4.0.39",
"@types/jsonwebtoken": "7.2.3",
"@types/passport": "0.4.1",
"@types/passport-jwt": "3.0.0",
"@types/passport-local": "1.0.32",
"@raincatcher/express-auth": "1.1.1",
"body-parser": "1.18.2",
"chai": "4.1.2",
"cors": "2.8.4",
"express": "4.16.2",
"express-session": "1.15.6",
"jsonwebtoken": "8.1.0",
"lodash": "4.17.4",
"passport": "0.4.0",
"passport-jwt": "3.0.1",
"passport-local": "1.0.0"
Expand Down
15 changes: 6 additions & 9 deletions cloud/wfm-demo-data/package.json
Expand Up @@ -36,19 +36,16 @@
"dependencies": {
"@raincatcher/logger": "1.1.1",
"@raincatcher/wfm": "1.1.1",
"@raincatcher/wfm-user": "1.1.1",
"bluebird": "3.5.1",
"mongodb": "2.2.33"
},
"devDependencies": {
"@types/bluebird": "3.5.18",
"@types/mocha": "2.2.44",
"@types/mongodb": "2.2.16",
"bluebird": "3.5.1"
},
"devDependencies": {
"del-cli": "1.1.0",
"mocha": "4.0.1",
"nyc": "11.3.0",
"source-map-support": "0.5.0",
"ts-node": "3.3.0",
"typescript": "2.6.1"
},
"peerDependencies": {
"mongodb": "2.2.33"
}
}
17 changes: 7 additions & 10 deletions cloud/wfm-rest-api/package.json
Expand Up @@ -37,34 +37,31 @@
"dependencies": {
"@raincatcher/logger": "1.1.1",
"@raincatcher/wfm": "1.1.1",
"@types/bluebird": "3.5.18",
"@types/express": "4.0.39",
"@types/lodash": "4.14.85",
"@types/mongodb": "2.2.16",
"bluebird": "3.5.1",
"express": "4.16.2",
"lodash": "4.17.4",
"mongodb": "2.2.33",
"shortid": "2.2.8"
},
"devDependencies": {
"@types/bluebird": "3.5.18",
"@types/chai": "4.0.5",
"@types/chai-as-promised": "7.1.0",
"@types/express": "4.0.39",
"@types/lodash": "4.14.85",
"@types/mocha": "2.2.44",
"@types/mongodb": "2.2.16",
"@types/proxyquire": "1.3.28",
"@types/shortid": "0.0.29",
"@types/sinon": "4.0.0",
"@types/sinon-express-mock": "1.3.2",
"chai": "4.1.2",
"chai-as-promised": "7.1.1",
"del-cli": "1.1.0",
"mocha": "4.0.1",
"nyc": "11.3.0",
"proxyquire": "1.8.0",
"sinon": "4.1.2",
"sinon-express-mock": "1.3.1",
"source-map-support": "0.5.0",
"ts-node": "3.3.0",
"typescript": "2.6.1"
},
"peerDependencies": {
"mongodb": "2.2.33"
}
}
1 change: 0 additions & 1 deletion cloud/wfm-rest-api/test/ApiControllerTest.ts
Expand Up @@ -5,7 +5,6 @@ import * as chaiAsPromised from 'chai-as-promised';
import * as express from 'express';
import { Request } from 'express';
import * as proxyquire from 'proxyquire';
import * as sinon from 'sinon';
import { MISSING_ID } from '../src/index';

chai.use(chaiAsPromised);
Expand Down
1 change: 0 additions & 1 deletion cloud/wfm-rest-api/test/WfmRestApiTest.ts
@@ -1,5 +1,4 @@
import * as assert from 'assert';
import * as proxyquire from 'proxyquire';
import { WfmRestApi } from '../src/index';

describe('FeedHenry Wfm api Tests', function() {
Expand Down

0 comments on commit 30361e4

Please sign in to comment.