update dependencies
This commit is contained in:
parent
8733a601b4
commit
cf78839e12
@ -3,7 +3,7 @@
|
||||
"version": "0.0.13",
|
||||
"description": "nodejs wrapper for CLI related tasks",
|
||||
"main": "dist/index.js",
|
||||
"typings":"dist/index.d.ts",
|
||||
"typings": "dist/index.d.ts",
|
||||
"scripts": {
|
||||
"test": "(npmts)",
|
||||
"testm": "(cd ts/compile && gulp) && (node test.js jazz jam --awesome)",
|
||||
@ -33,10 +33,12 @@
|
||||
"commander": "^2.9.0",
|
||||
"inquirer": "^1.0.3",
|
||||
"smartparam": "0.0.7",
|
||||
"typings-global": "^1.0.3",
|
||||
"yargs": "^4.7.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"npmts": "^5.2.5",
|
||||
"should": "^9.0.1"
|
||||
"should": "^9.0.1",
|
||||
"typings-test": "^1.0.1"
|
||||
}
|
||||
}
|
||||
|
@ -1,4 +1,5 @@
|
||||
/// <reference path="../ts/typings/index.d.ts" />
|
||||
import "typings-test";
|
||||
|
||||
let smartcli = require("../dist/index.js");
|
||||
let beautylog = require("beautylog");
|
||||
let should = require("should");
|
||||
|
@ -1,4 +1,4 @@
|
||||
/// <reference path="typings/index.d.ts" />
|
||||
import "typings-global";
|
||||
|
||||
import * as interfaces from "./smartcli.interfaces"
|
||||
import * as plugins from "./smartcli.plugins"
|
||||
@ -6,6 +6,9 @@ import * as SmartcliChecks from "./smartcli.checks";
|
||||
import * as SmartcliGetters from "./smartcli.getters";
|
||||
import * as SmartcliInteractions from "./smartcli.interaction";
|
||||
|
||||
import {Smartcli} from "./smartcli.classes.smartcli";
|
||||
export {Smartcli} from "./smartcli.classes.smartcli";
|
||||
|
||||
/* ------------------------------------------------ *
|
||||
* ---------- plugins for direct use -------------- *
|
||||
* ------------------------------------------------ */
|
||||
|
@ -1,4 +1,4 @@
|
||||
/// <reference path="typings/index.d.ts" />
|
||||
import "typings-global";
|
||||
|
||||
import "./smartcli.interfaces";
|
||||
import plugins = require("./smartcli.plugins");
|
||||
|
@ -1,3 +1,5 @@
|
||||
export class smartcli {
|
||||
import "typings-global";
|
||||
|
||||
export class Smartcli {
|
||||
|
||||
}
|
@ -1,6 +0,0 @@
|
||||
export class smartcli {
|
||||
|
||||
constructor(){
|
||||
|
||||
}
|
||||
}
|
@ -1,4 +1,4 @@
|
||||
/// <reference path="typings/index.d.ts" />
|
||||
import "typings-global";
|
||||
|
||||
import * as interfaces from "./smartcli.interfaces";
|
||||
import plugins = require("./smartcli.plugins");
|
||||
|
@ -1,4 +1,4 @@
|
||||
/// <reference path="typings/index.d.ts" />
|
||||
import "typings-global";
|
||||
|
||||
import "./smartcli.interfaces";
|
||||
import plugins = require("./smartcli.plugins");
|
||||
|
@ -1,3 +1,5 @@
|
||||
import "typings-global";
|
||||
|
||||
export interface CliOption {
|
||||
name: string;
|
||||
specified:boolean;
|
||||
|
@ -1,4 +1,4 @@
|
||||
/// <reference path="typings/index.d.ts" />
|
||||
import "typings-global";
|
||||
|
||||
export let path = require("path");
|
||||
export let beautylog = require("beautylog");
|
||||
|
@ -1,6 +0,0 @@
|
||||
{
|
||||
"globalDependencies": {
|
||||
"mocha": "registry:dt/mocha#2.2.5+20151023103246",
|
||||
"node": "github:DefinitelyTyped/DefinitelyTyped/node/node.d.ts"
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user