This commit is contained in:
Philipp Kunz 2016-06-28 11:11:53 +02:00
commit 1cc73fe8cb
8 changed files with 59 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
node_modules/
docs/
coverage/

1
dist/index.d.ts vendored Normal file
View File

@ -0,0 +1 @@
import "typings-global";

4
dist/index.js vendored Normal file
View File

@ -0,0 +1,4 @@
"use strict";
require("typings-global");
//# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbImluZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxRQUFPLGdCQUFnQixDQUFDLENBQUEiLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgXCJ0eXBpbmdzLWdsb2JhbFwiO1xuaW1wb3J0ICogYXMgcGx1Z2lucyBmcm9tIFwiLi9zbWFydHRpbWUucGx1Z2luc1wiO1xuIl19

3
dist/smarttime.plugins.d.ts vendored Normal file
View File

@ -0,0 +1,3 @@
import "typings-global";
export import beautylog = require("beautylog");
export declare let q: any;

6
dist/smarttime.plugins.js vendored Normal file
View File

@ -0,0 +1,6 @@
"use strict";
require("typings-global");
exports.beautylog = require("beautylog");
exports.q = require("q");
//# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInNtYXJ0dGltZS5wbHVnaW5zLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxRQUFPLGdCQUFnQixDQUFDLENBQUE7QUFDVixpQkFBUyxXQUFXLFdBQVcsQ0FBQyxDQUFDO0FBQ3BDLFNBQUMsR0FBRyxPQUFPLENBQUMsR0FBRyxDQUFDLENBQUMiLCJmaWxlIjoic21hcnR0aW1lLnBsdWdpbnMuanMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgXCJ0eXBpbmdzLWdsb2JhbFwiO1xuZXhwb3J0IGltcG9ydCBiZWF1dHlsb2cgPSByZXF1aXJlKFwiYmVhdXR5bG9nXCIpO1xuZXhwb3J0IGxldCBxID0gcmVxdWlyZShcInFcIik7Il19

37
package.json Normal file
View File

@ -0,0 +1,37 @@
{
"name": "smarttime",
"version": "1.0.0",
"description": "bundles smart ways to work with timestamps in nodejs",
"main": "dist/index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "(npmts)"
},
"repository": {
"type": "git",
"url": "git+ssh://git@gitlab.com/pushrocks/smarttime.git"
},
"keywords": [
"time"
],
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/smarttime/issues"
},
"homepage": "https://gitlab.com/pushrocks/smarttime#README",
"devDependencies": {
"npmts-g": "^5.2.6",
"should": "^9.0.2",
"typings-test": "^1.0.1"
},
"dependencies": {
"beautylog": "^5.0.12",
"mathjs": "^3.2.1",
"moment": "^2.13.0",
"q": "^1.4.1",
"typings-global": "^1.0.3"
}
}

2
ts/index.ts Normal file
View File

@ -0,0 +1,2 @@
import "typings-global";
import * as plugins from "./smarttime.plugins";

3
ts/smarttime.plugins.ts Normal file
View File

@ -0,0 +1,3 @@
import "typings-global";
export import beautylog = require("beautylog");
export let q = require("q");