Skip to content

Commit

Permalink
release(version): v4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
akanass committed Jul 11, 2022
1 parent 996e34c commit 8000051
Show file tree
Hide file tree
Showing 5 changed files with 149 additions and 504 deletions.
7 changes: 0 additions & 7 deletions .travis.yml

This file was deleted.

2 changes: 0 additions & 2 deletions Makefile
Expand Up @@ -2,8 +2,6 @@ pretest:
@node ./node_modules/.bin/tslint -p ./tsconfig.json "./src/**/*.ts" "./test/**/*.ts"
test:
@node node_modules/.bin/jest
coveralls:
cat ./coverage/lcov.info | node ./node_modules/.bin/coveralls
tsc:
@node ./node_modules/.bin/tsc -p ./tsconfig.build.json
clean:
Expand Down
11 changes: 3 additions & 8 deletions README.md
@@ -1,12 +1,4 @@
<div style="margin-bottom:20px;">
<div style="line-height:60px">
<a href="https://travis-ci.org/akanass/nestjsx-crypto.svg?branch=master">
<img src="https://travis-ci.org/akanass/nestjsx-crypto.svg?branch=master" alt="build" />
</a>
<a href="https://coveralls.io/github/akanass/nestjsx-crypto?branch=master">
<img src="https://coveralls.io/repos/github/akanass/nestjsx-crypto/badge.svg?branch=master" alt="coveralls" />
</a>
</div>
<div>
<a href="https://www.typescriptlang.org/docs/tutorial.html">
<img src="https://cdn-images-1.medium.com/max/800/1*8lKzkDJVWuVbqumysxMRYw.png"
Expand Down Expand Up @@ -133,6 +125,9 @@ To set up your development environment:
[Back to top](#table-of-contents)

## Change History
* v4.0.0 (2022-07-11)
* Update packages' versions
* Latest `nestjs` version `9.0.2`
* v3.0.0 (2021-10-08)
* Update packages' versions
* Latest `@akanass/rx-crypto` version `2.2.0`
Expand Down
173 changes: 86 additions & 87 deletions package.json
@@ -1,89 +1,88 @@
{
"name": "@akanass/nestjsx-crypto",
"version": "3.1.0",
"description": "NestJS crypto module provides some functions for security features like AES key, Key pair, RSA key, PKCS12, Certificate, PEM and more",
"main": "index.js",
"types": "index.d.ts",
"private": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"pretest": "make clean && make pretest",
"test": "make test",
"coveralls": "make coveralls",
"packaging": "make packaging",
"prebuild": "make clean && make pretest && make test",
"build": "make tsc",
"postbuild": "make packaging"
},
"repository": {
"type": "git",
"url": "git@github.com:akanass/nestjsx-crypto.git"
},
"keywords": [
"Crypto",
"RSA",
"PEM",
"PrivateKey",
"PublicKey",
"Certificate",
"RandomString",
"AES",
"PKCS12",
"KeyPair",
"JWT",
"NestJS",
"Framework",
"NodeJS",
"Node",
"Streams",
"Async",
"Decorator",
"RxJS",
"Rx",
"ReactiveX",
"Observable",
"Observer",
"Module",
"ES2015",
"ES2016",
"ES2017",
"ES6",
"ES7",
"ES8",
"Typescript"
],
"author": "Nicolas Jessel <akanass@icloud.com>",
"license": "MIT",
"bugs": "https://github.com/akanass/nestjsx-crypto/issues",
"homepage": "https://github.com/akanass/nestjsx-crypto#readme",
"dependencies": {
"@akanass/rx-crypto": "^2.3.0"
},
"devDependencies": {
"@nestjs/common": "^8.4.7",
"@nestjs/core": "^8.4.7",
"@nestjs/testing": "^8.4.7",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^28.1.4",
"coveralls": "^3.1.1",
"fs-extra": "^10.1.0",
"jest": "^28.1.2",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.5.5",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.1",
"tslint": "^6.1.3",
"typescript": "^4.7.4"
},
"peerDependencies": {
"@nestjs/common": "^8.4.7",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.5"
},
"engines": {
"node": ">=7.0.0"
}
"name": "@akanass/nestjsx-crypto",
"version": "4.0.0",
"description": "NestJS crypto module provides some functions for security features like AES key, Key pair, RSA key, PKCS12, Certificate, PEM and more",
"main": "index.js",
"types": "index.d.ts",
"private": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"pretest": "make clean && make pretest",
"test": "make test",
"packaging": "make packaging",
"prebuild": "make clean && make pretest && make test",
"build": "make tsc",
"postbuild": "make packaging"
},
"repository": {
"type": "git",
"url": "git@github.com:akanass/nestjsx-crypto.git"
},
"keywords": [
"Crypto",
"RSA",
"PEM",
"PrivateKey",
"PublicKey",
"Certificate",
"RandomString",
"AES",
"PKCS12",
"KeyPair",
"JWT",
"NestJS",
"Framework",
"NodeJS",
"Node",
"Streams",
"Async",
"Decorator",
"RxJS",
"Rx",
"ReactiveX",
"Observable",
"Observer",
"Module",
"ES2015",
"ES2016",
"ES2017",
"ES6",
"ES7",
"ES8",
"Typescript"
],
"author": "Nicolas Jessel <akanass@icloud.com>",
"license": "MIT",
"bugs": "https://github.com/akanass/nestjsx-crypto/issues",
"homepage": "https://github.com/akanass/nestjsx-crypto#readme",
"dependencies": {
"@akanass/rx-crypto": "^2.3.0"
},
"devDependencies": {
"@nestjs/common": "^9.0.2",
"@nestjs/core": "^9.0.2",
"@nestjs/testing": "^9.0.2",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^28.1.4",
"@types/node": "^18.0.3",
"fs-extra": "^10.1.0",
"jest": "^28.1.2",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.5.5",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.2",
"tslint": "^6.1.3",
"typescript": "^4.7.4"
},
"peerDependencies": {
"@nestjs/common": "^9.0.2",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.5"
},
"engines": {
"node": ">=7.0.0"
}
}

0 comments on commit 8000051

Please sign in to comment.