install slugify

This commit is contained in:
Roman Hotsiy 2016-07-26 11:57:33 +03:00
parent 205aa6211c
commit 08a46846bc
No known key found for this signature in database
GPG Key ID: 5CB7B3ACABA57CB0
3 changed files with 7 additions and 0 deletions

View File

@ -48,6 +48,7 @@
"remarkable": "npm:remarkable@^1.6.2",
"rxjs": "npm:rxjs@5.0.0-beta.6",
"scrollparent": "npm:scrollparent@^0.1.0",
"slugify": "npm:slugify@^0.1.1",
"stream-http": "npm:stream-http@^2.3.0",
"zone.js": "npm:zone.js@0.6.12"
},
@ -132,6 +133,7 @@
"shelljs": "^0.7.0",
"should": "^9.0.2",
"sinon": "^1.17.2",
"slugify": "^0.1.1",
"systemjs-builder": "^0.15.16",
"tslint": "^3.13.0",
"tslint-stylish": "^2.1.0-beta",

View File

@ -38,6 +38,7 @@ System.config({
"remarkable": "npm:remarkable@1.6.2",
"rxjs": "npm:rxjs@5.0.0-beta.6",
"scrollparent": "npm:scrollparent@0.1.0",
"slugify": "npm:slugify@0.1.1",
"stream-http": "npm:stream-http@2.3.0",
"systemjs/plugin-json": "github:systemjs/plugin-json@0.1.2",
"zone.js": "npm:zone.js@0.6.12",

4
typings/slugify.d.ts vendored Normal file
View File

@ -0,0 +1,4 @@
declare module 'slugify' {
var x: any;
export default x;
}