diff --git a/package.json b/package.json index 895f672..92c8281 100644 --- a/package.json +++ b/package.json @@ -1,14 +1,13 @@ { "name": "ts-router", - "version": "0.1.1", + "version": "0.1.2", "description": "koa router middleware, typescript fully supported, jersey like coding", "main": "dist/index.js", "scripts": { - "test": "echo \"Error: no test specified\" && exit 1", + "test": "gulp test", "install": "gulp build;gulp install" }, "dependencies": { - "babel-polyfill": "^6.6.1", "co-body": "^4.0.0", "formidable": "^1.0.17", "koa": "^2.0.0-alpha.3", diff --git a/src/index.ts b/src/index.ts index 3aa2bae..0b85497 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,4 +1,3 @@ -require('babel-polyfill'); export * from './util'; import Response from './response'; export {Response };