build(npm): add es6-promise as a dependency

This is actually an inherited dependency that comes from zone.js.

See related issue: https://github.com/angular/zone.js/issues/212

It would be better to make this one an optionalPeerDependency but npm
currently doesn't support making peerDependencies optional.
See: https://github.com/npm/npm/issues/3066
This commit is contained in:
Igor Minar 2015-12-06 10:10:11 -08:00 committed by Jeremy Elbourn
parent 21542ed069
commit c1e3ea9f7f
3 changed files with 9 additions and 0 deletions

View File

@ -3619,6 +3619,9 @@
}
}
},
"es6-promise": {
"version": "3.0.2"
},
"es6-shim": {
"version": "0.33.10"
},

5
npm-shrinkwrap.json generated
View File

@ -5548,6 +5548,11 @@
}
}
},
"es6-promise": {
"version": "3.0.2",
"from": "es6-promise@*",
"resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-3.0.2.tgz"
},
"es6-shim": {
"version": "0.33.10",
"from": "https://registry.npmjs.org/es6-shim/-/es6-shim-0.33.10.tgz",

View File

@ -31,6 +31,7 @@
"test": "gulp test.all.js && gulp test.all.dart"
},
"dependencies": {
"es6-promise": "^3.0.2",
"es6-shim": "^0.33.3",
"reflect-metadata": "0.1.2",
"rxjs": "5.0.0-alpha.13",