gsg-typeix
Advanced tools
Comparing version 2.0.4 to 3.0.0
@@ -0,1 +1,4 @@ | ||
## 3.0.0-rc.0 | ||
- Lambda support | ||
## 2.0.0-rc.0 | ||
@@ -41,3 +44,3 @@ - Web sockets support | ||
## 1.0.0-beta.14 | ||
- Fix module duplication resolution | ||
- Fix module duplication resolution | ||
@@ -70,3 +73,3 @@ ## 1.0.0-beta.13 | ||
## 1.0.0-beta.6 | ||
- Fix router addRule | ||
- Fix router addRule | ||
@@ -111,3 +114,3 @@ ## 1.0.0-beta.5 | ||
## 1.0.0-alpha-31 | ||
- Added fake http api for testing | ||
- Added fake http api for testing | ||
- Remove demo app from framework repo | ||
@@ -118,11 +121,11 @@ | ||
- Changed @Chain @BeforeEach @AfterEach to not be function calls | ||
- Updated tests for controller | ||
- Updated tests for controller | ||
- Exchanged controllerResolver api | ||
## 1.0.0-alpha-28 | ||
- Fixed injections for constructor and action params | ||
- Fixed injections for constructor and action params | ||
- Added tests for Injector | ||
## 1.0.0-alpha-25 | ||
- Remove unnecessary dependencies in package.json | ||
- Remove unnecessary dependencies in package.json | ||
@@ -129,0 +132,0 @@ ## 1.0.0-alpha-24 |
119
package.json
{ | ||
"name": "gsg-typeix", | ||
"version": "2.0.4", | ||
"dependencies": { | ||
"reflect-metadata": "^0.1.10", | ||
"ws": "^3.2.0" | ||
}, | ||
"description": "Typescript API for RESTful Services for (Node.js)", | ||
"main": "build/index.js", | ||
"scripts": { | ||
"test": "npm run compile && mocha build/tests/ --inspect --full-trace", | ||
"docs": "typedoc --options typedoc.json --includeDeclarations node_modules/@types/ src/", | ||
"compile": "tsc -p tsconfig.json" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git@github.com:AdminJuwel191/typeix.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/AdminJuwel191/typeix/issues", | ||
"email": "igor.zg1987@gmail.com" | ||
}, | ||
"homepage": "https://github.com/AdminJuwel191/typeix", | ||
"engines": { | ||
"node": ">=6.0.0" | ||
}, | ||
"keywords": [ | ||
"typeix", | ||
"enterprise", | ||
"development", | ||
"javascript", | ||
"rest", | ||
"api", | ||
"restful", | ||
"services" | ||
], | ||
"author": "igor.zg1987@gmail.com", | ||
"contributors": [ | ||
{ | ||
"name": "Michael Rose", | ||
"email": "michael_rose@gmx.de" | ||
"name": "gsg-typeix", | ||
"version": "3.0.0", | ||
"dependencies": { | ||
"aws-lambda-create-request-response": "^0.1.13", | ||
"reflect-metadata": "^0.1.10", | ||
"ws": "^3.2.0" | ||
}, | ||
"description": "Typescript API for RESTful Services for (Node.js)", | ||
"main": "build/index.js", | ||
"scripts": { | ||
"test": "npm run compile && mocha build/tests/ --inspect --full-trace", | ||
"docs": "typedoc --options typedoc.json --includeDeclarations node_modules/@types/ src/", | ||
"compile": "tsc -p tsconfig.json" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git@github.com:jverneuer/gsg-typeix.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/AdminJuwel191/typeix/issues", | ||
"email": "igor.zg1987@gmail.com" | ||
}, | ||
"homepage": "https://github.com/AdminJuwel191/typeix", | ||
"engines": { | ||
"node": ">=6.0.0" | ||
}, | ||
"keywords": [ | ||
"typeix", | ||
"enterprise", | ||
"development", | ||
"javascript", | ||
"rest", | ||
"api", | ||
"restful", | ||
"services" | ||
], | ||
"author": "igor.zg1987@gmail.com", | ||
"contributors": [{ | ||
"name": "Michael Rose", | ||
"email": "michael_rose@gmx.de" | ||
}, | ||
{ | ||
"name": "Jens Verneuer", | ||
"email": "jens.verneuer@cuponation.com" | ||
} | ||
], | ||
"license": "MIT", | ||
"devDependencies": { | ||
"@types/aws-lambda": "^8.10.15", | ||
"@types/chai": "^4.0.2", | ||
"@types/mocha": "^2.2.41", | ||
"@types/node": "^8.0.20", | ||
"@types/sinon": "^2.3.3", | ||
"@types/sinon-chai": "^2.7.28", | ||
"@types/ws": "^3.2.0", | ||
"chai": "^4.1.1", | ||
"mocha": "^3.5.0", | ||
"nyc": "^13.1.0", | ||
"tslint": "^5.6.0", | ||
"typedoc": "^0.8.0", | ||
"typescript": "^2.3.0" | ||
} | ||
], | ||
"license": "MIT", | ||
"devDependencies": { | ||
"@types/chai": "^4.0.2", | ||
"@types/mocha": "^2.2.41", | ||
"@types/node": "^8.0.20", | ||
"@types/sinon": "^2.3.3", | ||
"@types/sinon-chai": "^2.7.28", | ||
"@types/ws": "^3.2.0", | ||
"chai": "^4.1.1", | ||
"mocha": "^3.5.0", | ||
"sinon": "^2.4.1", | ||
"sinon-chai": "^2.12.0", | ||
"tslint": "^5.6.0", | ||
"typedoc": "^0.8.0", | ||
"typescript": "^2.3.0" | ||
} | ||
} |
{ | ||
"compileOnSave": true, | ||
"compilerOptions": { | ||
"declaration": true, | ||
"target": "es6", | ||
"module": "commonjs", | ||
"moduleResolution": "node", | ||
"outDir": "build", | ||
"rootDir": "src", | ||
"sourceMap": true, | ||
"inlineSources": false, | ||
"emitDecoratorMetadata": true, | ||
"experimentalDecorators": true, | ||
"removeComments": false, | ||
"noImplicitAny": false, | ||
"typeRoots": [ | ||
"node_modules/@types" | ||
"compileOnSave": true, | ||
"compilerOptions": { | ||
"declaration": true, | ||
"target": "es6", | ||
"module": "commonjs", | ||
"moduleResolution": "node", | ||
"outDir": "build", | ||
"rootDir": "src", | ||
"sourceMap": true, | ||
"inlineSources": false, | ||
"emitDecoratorMetadata": true, | ||
"experimentalDecorators": true, | ||
"removeComments": false, | ||
"noImplicitAny": false, | ||
"typeRoots": [ | ||
"node_modules/@types" | ||
] | ||
}, | ||
"include": [ | ||
"src/**/*.ts" | ||
], | ||
"exclude": [ | ||
"node_modules", | ||
] | ||
}, | ||
"include": [ | ||
"src/**/*.ts" | ||
], | ||
"exclude": [ | ||
"node_modules" | ||
] | ||
} |
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Network access
Supply chain riskThis module accesses the network.
Found 2 instances in 1 package
1
10929
3
12
143
+ Addedaws-lambda-create-request-response@0.1.47(transitive)