37 lines
1021 B
TypeScript
37 lines
1021 B
TypeScript
// node native
|
|
import * as http from 'http';
|
|
import * as url from 'url';
|
|
import * as path from 'path';
|
|
|
|
export { http, url, path };
|
|
|
|
// @pushrocks scope (maintained by Lossless GmbH)
|
|
import * as projectinfo from '@pushrocks/projectinfo';
|
|
import * as smartdelay from '@pushrocks/smartdelay';
|
|
import * as smartfile from '@pushrocks/smartfile';
|
|
import * as smartmime from '@pushrocks/smartmime';
|
|
import * as smartmarkdown from '@pushrocks/smartmarkdown';
|
|
import * as smartnpm from '@pushrocks/smartnpm';
|
|
import * as smartpromise from '@pushrocks/smartpromise';
|
|
import * as smarttime from '@pushrocks/smarttime';
|
|
|
|
export {
|
|
projectinfo,
|
|
smartdelay,
|
|
smartfile,
|
|
smartmime,
|
|
smartmarkdown,
|
|
smartnpm,
|
|
smartpromise,
|
|
smarttime,
|
|
};
|
|
|
|
// unscoped packages
|
|
import compression from 'compression';
|
|
import express from 'express';
|
|
import * as litNtml from 'lit-ntml';
|
|
import * as promClient from 'prom-client';
|
|
import splunkLogging from 'splunk-logging';
|
|
|
|
export { compression, express, litNtml, promClient, splunkLogging };
|