Merge pull request #7002 from DefinitelyTyped/switch-to-1.7

Switch to TypeScript 1.7.3
This commit is contained in:
Masahiro Wakame
2015-12-01 12:23:51 +09:00
7 changed files with 277 additions and 313 deletions
+1
View File
@@ -13,6 +13,7 @@
*.map
*.swp
.DS_Store
npm-debug.log
_Resharper.DefinitelyTyped
bin
+1 -1
View File
@@ -1,6 +1,6 @@
language: node_js
node_js:
- "iojs-v2"
- 4
sudo: false
+2 -2
View File
@@ -9,11 +9,11 @@ intro.setOptions({
intro: "Hello world!"
},
{
element: document.querySelector('#step1'),
element: document.querySelector('#step1') as HTMLElement,
intro : "This is a tooltip."
},
{
element : document.querySelectorAll('#step2')[0],
element : document.querySelectorAll('#step2')[0] as HTMLElement,
intro : "Ok, wasn't that fun?",
position: 'right'
},
+1 -1
View File
@@ -14,7 +14,7 @@ declare module IntroJs {
interface Step {
intro: string;
element?: string|HTMLElement;
position?: Positions;
position?: string|Positions;
}
interface Options {
+69 -69
View File
@@ -27,8 +27,8 @@ describe('toBeArray', function () {
});
it('should pass for [1,"",{}]', function () {
expect([
1,
"",
1,
"",
{
}
]).toBeArray();
@@ -115,13 +115,13 @@ describe('toBeOneOf', function () {
describe('matches', function () {
it('should find "a" in ["a", "b"]', function () {
expect('a').toBeOneOf([
'a',
'a',
'b'
]);
});
it('should find "uxebu" in ["company", "uxebu"]', function () {
expect('uxebu').toBeOneOf([
'company',
'company',
'uxebu'
]);
});
@@ -129,30 +129,30 @@ describe('toBeOneOf', function () {
describe('non-matches', function () {
it('should not find "" in [" ", "0"]', function () {
expect('').not.toBeOneOf([
' ',
' ',
'0'
]);
});
it('should not find "a" in ["b", "c"]', function () {
expect('a').not.toBeOneOf([
'b',
'b',
'c'
]);
});
});
});
describe('toBeCloseToOneOf', function () {
function oneDigitOff(actual, expected) {
function oneDigitOff(actual: any, expected: any) {
var actualInt = parseInt(actual, 10);
return actualInt - 1 <= expected && actualInt + 1 >= expected;
}
function tenPercentOff(actual, expected) {
function tenPercentOff(actual: any, expected: any) {
return expected * 0.9 <= actual && expected * 1.1 >= actual;
}
function oneDigitOrTenPercentOff(actual, expected) {
function oneDigitOrTenPercentOff(actual: any, expected: any) {
return oneDigitOff(actual, expected) || tenPercentOff(actual, expected);
}
function twoDecimalsOff(actual, expected) {
function twoDecimalsOff(actual: any, expected: any) {
var lower = ((expected * 100) - 2) / 100;
var upper = ((expected * 100) + 2) / 100;
return lower <= actual && upper >= actual;
@@ -160,25 +160,25 @@ describe('toBeCloseToOneOf', function () {
describe('matches', function () {
it('should say 7 is close to one of [8, 9]', function () {
expect(7).toBeCloseToOneOf([
8,
8,
9
], oneDigitOff);
});
it('should say 2 is 10% off of one of [2.2, 1.0]', function () {
expect(2).toBeCloseToOneOf([
2.2,
2.2,
1.0
], tenPercentOff);
});
it('should say 7 is close to one of [8, 9]', function () {
expect(7).toBeCloseToOneOf([
8,
8,
9
], oneDigitOrTenPercentOff);
});
it('should say 1.345 two decimals off of [1.325, 1.365]', function () {
expect(1.345).toBeCloseToOneOf([
1.325,
1.325,
1.365
], twoDecimalsOff);
});
@@ -186,26 +186,26 @@ describe('toBeCloseToOneOf', function () {
describe('non-matches', function () {
it('should say 7 is NOT one off of [9, 10, 11]', function () {
expect(7).not.toBeCloseToOneOf([
9,
10,
9,
10,
11
], oneDigitOff);
});
it('should say 1 is close to one of [8, 9]', function () {
expect(1).not.toBeCloseToOneOf([
8,
8,
9
], oneDigitOrTenPercentOff);
});
it('should say 1.9 is NOT 10% off of one of [2.2, 1.0]', function () {
expect(1.9).not.toBeCloseToOneOf([
2.2,
2.2,
1.0
], tenPercentOff);
});
it('should say 1.345 two decimals off of [1.325, 1.365]', function () {
expect(1.304).not.toBeCloseToOneOf([
1.325,
1.325,
1.365
], twoDecimalsOff);
});
@@ -216,7 +216,7 @@ describe('toContainOnce', function () {
describe('matches', function () {
it('should work for arrays', function () {
expect([
1,
1,
2
]).toContainOnce(1);
});
@@ -227,7 +227,7 @@ describe('toContainOnce', function () {
describe('non-matches', function () {
it('should work for arrays', function () {
expect([
1,
1,
2
]).not.toContainOnce(3);
});
@@ -257,7 +257,7 @@ describe('toHaveLength', function () {
describe('toHaveProperties', function () {
describe('matches', function () {
it('should work for `{x:0, y:undefined}`', function () {
var obj = {
var obj: any = {
x: 0,
y: undefined
};
@@ -268,7 +268,7 @@ describe('toHaveProperties', function () {
describe('toHavePropertiesWithValues', function () {
describe('matches', function () {
it('should work with a reference object', function () {
function C() {
var C: any = function C() {
this.x = 0;
}
C.prototype.y = 'arbitrary';
@@ -283,7 +283,7 @@ describe('toHavePropertiesWithValues', function () {
describe('toHaveOwnProperties', function () {
describe('matches', function () {
it('should work for `{x:0, y:undefined}`', function () {
var obj = {
var obj: any = {
x: 0,
y: undefined
};
@@ -322,14 +322,14 @@ describe('toHaveBeenCalledXTimes', function () {
describe('toExactlyHaveProperties', function () {
describe('matches', function () {
it('should work for `{x:0, y:undefined}`', function () {
var obj = {
var obj: any = {
x: 0,
y: undefined
};
expect(obj).toExactlyHaveProperties('x', 'y');
});
it('should work in any order', function () {
var obj = {
var obj: any = {
x: 0,
y: undefined
};
@@ -338,14 +338,14 @@ describe('toExactlyHaveProperties', function () {
});
describe('non-matches', function () {
it('should work for too many properties', function () {
var obj = {
var obj: any = {
x: 0,
y: undefined
};
expect(obj).not.toExactlyHaveProperties('x');
});
it('should work for missing properties', function () {
var obj = {
var obj: any = {
x: 0,
y: undefined
};
@@ -375,17 +375,17 @@ describe('toEndWith', function () {
describe('matches', function () {
it('should work for string', function () {
expect([
'1',
'1',
'2'
]).toEndWith('2');
});
it('should work for array', function () {
expect([
3,
4,
3,
4,
5
]).toEndWith([
4,
4,
5
]);
});
@@ -393,17 +393,17 @@ describe('toEndWith', function () {
describe('non-matches', function () {
it('should work for string', function () {
expect([
'1',
'1',
'2'
]).not.toEndWith('3');
});
it('should work for array', function () {
expect([
3,
4,
3,
4,
5
]).not.toEndWith([
3,
3,
4
]);
});
@@ -419,8 +419,8 @@ describe('toEachEndWith', function () {
});
it('should work for array with multiple elements', function () {
expect([
'one',
'zwee',
'one',
'zwee',
'three'
]).toEachEndWith('e');
});
@@ -433,8 +433,8 @@ describe('toEachEndWith', function () {
});
it('should work for array with multiple elements', function () {
expect([
'one',
'zwei',
'one',
'zwei',
'three'
]).not.toEachEndWith('e');
});
@@ -449,8 +449,8 @@ describe('toSomeEndWith', function () {
});
it('should work for array with multiple elements', function () {
expect([
'one',
'zwee',
'one',
'zwee',
'three'
]).toSomeEndWith('ee');
});
@@ -463,8 +463,8 @@ describe('toSomeEndWith', function () {
});
it('should work for array with multiple elements', function () {
expect([
'one',
'zwei',
'one',
'zwei',
'three'
]).not.toSomeEndWith('a');
});
@@ -491,17 +491,17 @@ describe('toStartWith', function () {
describe('matches', function () {
it('should work for string', function () {
expect([
'1',
'1',
'2'
]).toStartWith('1');
});
it('should work for array', function () {
expect([
3,
4,
3,
4,
5
]).toStartWith([
3,
3,
4
]);
});
@@ -509,17 +509,17 @@ describe('toStartWith', function () {
describe('non-matches', function () {
it('should work for string', function () {
expect([
'1',
'1',
'2'
]).not.toStartWith('3');
});
it('should work for array', function () {
expect([
3,
4,
3,
4,
5
]).not.toStartWith([
4,
4,
5
]);
});
@@ -535,8 +535,8 @@ describe('toEachStartWith', function () {
});
it('should work for array with multiple elements', function () {
expect([
'one',
'onetwo',
'one',
'onetwo',
'onethree'
]).toEachStartWith('o');
});
@@ -549,8 +549,8 @@ describe('toEachStartWith', function () {
});
it('should work for array with multiple elements', function () {
expect([
'one',
'two',
'one',
'two',
'onethree'
]).not.toEachStartWith('o');
});
@@ -565,8 +565,8 @@ describe('toSomeStartWith', function () {
});
it('should work for array with multiple elements', function () {
expect([
'one',
'onetwo',
'one',
'onetwo',
'three'
]).toSomeStartWith('one');
});
@@ -579,8 +579,8 @@ describe('toSomeStartWith', function () {
});
it('should work for array with multiple elements', function () {
expect([
'one',
'two',
'one',
'two',
'onethree'
]).not.toSomeStartWith('a');
});
@@ -610,19 +610,19 @@ describe('toStartWithEither', function () {
describe('matches', function () {
it('should work for string', function () {
expect([
'1',
'1',
'2'
]).toStartWithEither('1', '2');
});
it('should work for array', function () {
expect([
3,
4,
3,
4,
5
]).toStartWithEither([
4
], [
3,
3,
4
]);
});
@@ -630,20 +630,20 @@ describe('toStartWithEither', function () {
describe('non-matches', function () {
it('should work for string', function () {
expect([
'1',
'1',
'2'
]).not.toStartWithEither('3');
});
it('should work for array', function () {
expect([
3,
4,
3,
4,
5
]).not.toStartWithEither([
5,
5,
6
], [
4,
4,
5
]);
});
+202 -239
View File
@@ -2,254 +2,217 @@
"name": "DefinitelyTyped",
"version": "0.0.1",
"dependencies": {
"assertion-error": {
"version": "1.0.1",
"from": "assertion-error@>=1.0.0 <2.0.0",
"resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.0.1.tgz"
},
"balanced-match": {
"version": "0.3.0",
"from": "balanced-match@>=0.3.0 <0.4.0",
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.3.0.tgz"
},
"bluebird": {
"version": "2.10.2",
"from": "bluebird@>=2.10.1 <3.0.0",
"resolved": "https://registry.npmjs.org/bluebird/-/bluebird-2.10.2.tgz"
},
"brace-expansion": {
"version": "1.1.2",
"from": "brace-expansion@>=1.0.0 <2.0.0",
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.2.tgz"
},
"concat-map": {
"version": "0.0.1",
"from": "concat-map@0.0.1",
"resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"
},
"core-util-is": {
"version": "1.0.2",
"from": "core-util-is@>=1.0.0 <1.1.0",
"resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz"
},
"definition-header": {
"version": "0.1.0",
"from": "definition-header@>=0.1.0 <0.2.0",
"resolved": "https://registry.npmjs.org/definition-header/-/definition-header-0.1.0.tgz"
},
"definition-tester": {
"version": "0.3.0",
"from": "definition-tester@0.3.0",
"resolved": "https://registry.npmjs.org/definition-tester/-/definition-tester-0.3.0.tgz"
},
"findup-sync": {
"version": "0.3.0",
"from": "findup-sync@>=0.3.0 <0.4.0",
"resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-0.3.0.tgz"
},
"git-wrapper": {
"version": "0.1.1",
"from": "git-wrapper@>=0.1.1 <0.2.0",
"resolved": "https://registry.npmjs.org/git-wrapper/-/git-wrapper-0.1.1.tgz"
},
"glob": {
"version": "5.0.15",
"from": "glob@>=5.0.14 <6.0.0",
"resolved": "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz"
},
"hoek": {
"version": "2.16.3",
"from": "hoek@>=2.2.0 <3.0.0",
"resolved": "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz"
},
"inflight": {
"version": "1.0.4",
"from": "inflight@>=1.0.4 <2.0.0",
"resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.4.tgz"
},
"inherits": {
"version": "2.0.1",
"from": "inherits@>=2.0.0 <3.0.0",
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz"
},
"isarray": {
"version": "0.0.1",
"from": "isarray@0.0.1",
"resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz"
},
"isemail": {
"version": "1.2.0",
"from": "isemail@>=1.0.0 <2.0.0",
"resolved": "https://registry.npmjs.org/isemail/-/isemail-1.2.0.tgz"
},
"joi": {
"version": "4.9.0",
"from": "joi@>=4.0.0 <5.0.0",
"resolved": "https://registry.npmjs.org/joi/-/joi-4.9.0.tgz"
},
"joi-assert": {
"version": "0.0.3",
"from": "joi-assert@0.0.3",
"resolved": "https://registry.npmjs.org/joi-assert/-/joi-assert-0.0.3.tgz"
},
"jsonparse": {
"version": "0.0.5",
"from": "jsonparse@0.0.5",
"resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-0.0.5.tgz"
},
"JSONStream": {
"version": "0.8.4",
"from": "JSONStream@>=0.8.4 <0.9.0",
"resolved": "https://registry.npmjs.org/JSONStream/-/JSONStream-0.8.4.tgz"
},
"lazy.js": {
"version": "0.4.2",
"from": "lazy.js@>=0.4.2 <0.5.0",
"resolved": "https://registry.npmjs.org/lazy.js/-/lazy.js-0.4.2.tgz"
},
"manticore": {
"version": "0.2.4",
"from": "manticore@>=0.2.4 <0.3.0",
"resolved": "https://registry.npmjs.org/manticore/-/manticore-0.2.4.tgz",
"dependencies": {
"bluebird": {
"version": "2.10.1",
"from": "bluebird@>=2.10.1 <3.0.0",
"resolved": "https://registry.npmjs.org/bluebird/-/bluebird-2.10.1.tgz"
},
"definition-header": {
"version": "0.1.0",
"from": "definition-header@>=0.1.0 <0.2.0",
"resolved": "https://registry.npmjs.org/definition-header/-/definition-header-0.1.0.tgz",
"dependencies": {
"joi": {
"version": "4.9.0",
"from": "joi@>=4.0.0 <5.0.0",
"resolved": "https://registry.npmjs.org/joi/-/joi-4.9.0.tgz",
"dependencies": {
"hoek": {
"version": "2.16.3",
"from": "hoek@>=2.2.0 <3.0.0",
"resolved": "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz"
},
"topo": {
"version": "1.0.3",
"from": "topo@>=1.0.0 <2.0.0",
"resolved": "https://registry.npmjs.org/topo/-/topo-1.0.3.tgz"
},
"isemail": {
"version": "1.2.0",
"from": "isemail@>=1.0.0 <2.0.0",
"resolved": "https://registry.npmjs.org/isemail/-/isemail-1.2.0.tgz"
},
"moment": {
"version": "2.10.6",
"from": "moment@>=2.0.0 <3.0.0",
"resolved": "https://registry.npmjs.org/moment/-/moment-2.10.6.tgz"
}
}
},
"joi-assert": {
"version": "0.0.3",
"from": "joi-assert@0.0.3",
"resolved": "https://registry.npmjs.org/joi-assert/-/joi-assert-0.0.3.tgz",
"dependencies": {
"assertion-error": {
"version": "1.0.1",
"from": "assertion-error@>=1.0.0 <2.0.0",
"resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.0.1.tgz"
}
}
},
"parsimmon": {
"version": "0.5.1",
"from": "parsimmon@>=0.5.0 <0.6.0",
"resolved": "https://registry.npmjs.org/parsimmon/-/parsimmon-0.5.1.tgz",
"dependencies": {
"pjs": {
"version": "5.1.1",
"from": "pjs@>=5.0.0 <6.0.0",
"resolved": "https://registry.npmjs.org/pjs/-/pjs-5.1.1.tgz"
}
}
},
"xregexp": {
"version": "2.0.0",
"from": "xregexp@>=2.0.0 <2.1.0",
"resolved": "https://registry.npmjs.org/xregexp/-/xregexp-2.0.0.tgz"
}
}
},
"findup-sync": {
"version": "0.3.0",
"from": "findup-sync@>=0.3.0 <0.4.0",
"resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-0.3.0.tgz"
},
"git-wrapper": {
"version": "0.1.1",
"from": "git-wrapper@>=0.1.1 <0.2.0",
"resolved": "https://registry.npmjs.org/git-wrapper/-/git-wrapper-0.1.1.tgz"
},
"glob": {
"version": "5.0.14",
"from": "glob@>=5.0.14 <6.0.0",
"resolved": "https://registry.npmjs.org/glob/-/glob-5.0.14.tgz",
"dependencies": {
"inflight": {
"version": "1.0.4",
"from": "inflight@>=1.0.4 <2.0.0",
"resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.4.tgz",
"dependencies": {
"wrappy": {
"version": "1.0.1",
"from": "wrappy@>=1.0.0 <2.0.0",
"resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.1.tgz"
}
}
},
"inherits": {
"version": "2.0.1",
"from": "inherits@>=2.0.0 <3.0.0",
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz"
},
"minimatch": {
"version": "2.0.10",
"from": "minimatch@>=2.0.1 <3.0.0",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz",
"dependencies": {
"brace-expansion": {
"version": "1.1.0",
"from": "brace-expansion@>=1.0.0 <2.0.0",
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.0.tgz",
"dependencies": {
"balanced-match": {
"version": "0.2.0",
"from": "balanced-match@>=0.2.0 <0.3.0",
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.2.0.tgz"
},
"concat-map": {
"version": "0.0.1",
"from": "concat-map@0.0.1",
"resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"
}
}
}
}
},
"once": {
"version": "1.3.2",
"from": "once@>=1.3.0 <2.0.0",
"resolved": "https://registry.npmjs.org/once/-/once-1.3.2.tgz",
"dependencies": {
"wrappy": {
"version": "1.0.1",
"from": "wrappy@>=1.0.0 <2.0.0",
"resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.1.tgz"
}
}
},
"path-is-absolute": {
"version": "1.0.0",
"from": "path-is-absolute@>=1.0.0 <2.0.0",
"resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.0.tgz"
}
}
},
"lazy.js": {
"version": "0.4.2",
"from": "lazy.js@>=0.4.2 <0.5.0",
"resolved": "https://registry.npmjs.org/lazy.js/-/lazy.js-0.4.2.tgz"
},
"manticore": {
"version": "0.2.4",
"from": "manticore@>=0.2.4 <0.3.0",
"resolved": "https://registry.npmjs.org/manticore/-/manticore-0.2.4.tgz",
"dependencies": {
"JSONStream": {
"version": "0.8.4",
"from": "JSONStream@>=0.8.4 <0.9.0",
"resolved": "https://registry.npmjs.org/JSONStream/-/JSONStream-0.8.4.tgz",
"dependencies": {
"jsonparse": {
"version": "0.0.5",
"from": "jsonparse@0.0.5",
"resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-0.0.5.tgz"
},
"through": {
"version": "2.3.8",
"from": "through@>=2.2.7 <3.0.0",
"resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz"
}
}
},
"bluebird": {
"version": "1.2.4",
"from": "bluebird@>=1.2.4 <2.0.0",
"resolved": "https://registry.npmjs.org/bluebird/-/bluebird-1.2.4.tgz"
},
"through2": {
"version": "0.5.1",
"from": "through2@>=0.5.1 <0.6.0",
"resolved": "https://registry.npmjs.org/through2/-/through2-0.5.1.tgz",
"dependencies": {
"readable-stream": {
"version": "1.0.33",
"from": "readable-stream@>=1.0.17 <1.1.0",
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz",
"dependencies": {
"core-util-is": {
"version": "1.0.1",
"from": "core-util-is@>=1.0.0 <1.1.0",
"resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.1.tgz"
},
"isarray": {
"version": "0.0.1",
"from": "isarray@0.0.1",
"resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz"
},
"string_decoder": {
"version": "0.10.31",
"from": "string_decoder@>=0.10.0 <0.11.0",
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz"
},
"inherits": {
"version": "2.0.1",
"from": "inherits@>=2.0.1 <2.1.0",
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz"
}
}
},
"xtend": {
"version": "3.0.0",
"from": "xtend@>=3.0.0 <3.1.0",
"resolved": "https://registry.npmjs.org/xtend/-/xtend-3.0.0.tgz"
}
}
},
"type-detect": {
"version": "0.1.2",
"from": "type-detect@>=0.1.2 <0.2.0",
"resolved": "https://registry.npmjs.org/type-detect/-/type-detect-0.1.2.tgz"
}
}
},
"optimist": {
"version": "0.6.1",
"from": "optimist@>=0.6.1 <0.7.0",
"resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz",
"dependencies": {
"wordwrap": {
"version": "0.0.3",
"from": "wordwrap@>=0.0.2 <0.1.0",
"resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz"
},
"minimist": {
"version": "0.0.10",
"from": "minimist@>=0.0.1 <0.1.0",
"resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz"
}
}
"version": "1.2.4",
"from": "bluebird@>=1.2.4 <2.0.0",
"resolved": "https://registry.npmjs.org/bluebird/-/bluebird-1.2.4.tgz"
}
}
},
"minimatch": {
"version": "3.0.0",
"from": "minimatch@>=2.0.0 <3.0.0||>=3.0.0 <4.0.0",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.0.tgz"
},
"minimist": {
"version": "0.0.10",
"from": "minimist@>=0.0.1 <0.1.0",
"resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz"
},
"moment": {
"version": "2.10.6",
"from": "moment@>=2.0.0 <3.0.0",
"resolved": "https://registry.npmjs.org/moment/-/moment-2.10.6.tgz"
},
"once": {
"version": "1.3.3",
"from": "once@>=1.3.0 <2.0.0",
"resolved": "https://registry.npmjs.org/once/-/once-1.3.3.tgz"
},
"optimist": {
"version": "0.6.1",
"from": "optimist@>=0.6.1 <0.7.0",
"resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz"
},
"parsimmon": {
"version": "0.5.1",
"from": "parsimmon@>=0.5.0 <0.6.0",
"resolved": "https://registry.npmjs.org/parsimmon/-/parsimmon-0.5.1.tgz"
},
"path-is-absolute": {
"version": "1.0.0",
"from": "path-is-absolute@>=1.0.0 <2.0.0",
"resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.0.tgz"
},
"pjs": {
"version": "5.1.1",
"from": "pjs@>=5.0.0 <6.0.0",
"resolved": "https://registry.npmjs.org/pjs/-/pjs-5.1.1.tgz"
},
"readable-stream": {
"version": "1.0.33",
"from": "readable-stream@>=1.0.17 <1.1.0",
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz"
},
"string_decoder": {
"version": "0.10.31",
"from": "string_decoder@>=0.10.0 <0.11.0",
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz"
},
"through": {
"version": "2.3.8",
"from": "through@>=2.2.7 <3.0.0",
"resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz"
},
"through2": {
"version": "0.5.1",
"from": "through2@>=0.5.1 <0.6.0",
"resolved": "https://registry.npmjs.org/through2/-/through2-0.5.1.tgz"
},
"topo": {
"version": "1.1.0",
"from": "topo@>=1.0.0 <2.0.0",
"resolved": "https://registry.npmjs.org/topo/-/topo-1.1.0.tgz"
},
"type-detect": {
"version": "0.1.2",
"from": "type-detect@>=0.1.2 <0.2.0",
"resolved": "https://registry.npmjs.org/type-detect/-/type-detect-0.1.2.tgz"
},
"typescript": {
"version": "1.6.2",
"from": "typescript@1.6.2",
"resolved": "https://registry.npmjs.org/typescript/-/typescript-1.6.2.tgz"
"version": "1.7.3",
"from": "typescript@1.7.3",
"resolved": "https://registry.npmjs.org/typescript/-/typescript-1.7.3.tgz"
},
"wordwrap": {
"version": "0.0.3",
"from": "wordwrap@>=0.0.2 <0.1.0",
"resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz"
},
"wrappy": {
"version": "1.0.1",
"from": "wrappy@>=1.0.0 <2.0.0",
"resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.1.tgz"
},
"xregexp": {
"version": "2.0.0",
"from": "xregexp@>=2.0.0 <2.1.0",
"resolved": "https://registry.npmjs.org/xregexp/-/xregexp-2.0.0.tgz"
},
"xtend": {
"version": "3.0.0",
"from": "xtend@>=3.0.0 <3.1.0",
"resolved": "https://registry.npmjs.org/xtend/-/xtend-3.0.0.tgz"
}
}
}
+1 -1
View File
@@ -36,6 +36,6 @@
},
"devDependencies": {
"definition-tester": "0.3.0",
"typescript": "1.6.2"
"typescript": "1.7.3"
}
}