@xtaskjs/security 1.0.6 → 1.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +8 -1
  2. package/package.json +9 -6
package/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  Security integration package for xtaskjs.
4
4
 
5
+ This package is part of the xtaskjs project, hosted at [xtaskjs.io](https://xtaskjs.io).
6
+
5
7
  ## Installation
6
8
  ```bash
7
9
  npm install @xtaskjs/security passport passport-jwt reflect-metadata
@@ -112,4 +114,9 @@ class SecurityAwareService {
112
114
  private readonly authorization: SecurityAuthorizationService
113
115
  ) {}
114
116
  }
115
- ```
117
+ ```
118
+
119
+ ## Resources
120
+ - Project site and documentation: [xtaskjs.io](https://xtaskjs.io)
121
+ - npm package: [@xtaskjs/security](https://www.npmjs.com/package/@xtaskjs/security)
122
+ - Source repository: [xtaskjs/xtaskjs](https://github.com/xtaskjs/xtaskjs)
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@xtaskjs/security",
3
- "version": "1.0.6",
4
- "description": "xtaskjs security integration package",
3
+ "version": "1.0.7",
4
+ "description": "Authentication and authorization integration for xtaskjs.",
5
5
  "author": "Javier Rodriguez Soler",
6
- "homepage": "https://xtaskjs.com",
6
+ "homepage": "https://xtaskjs.io",
7
7
  "main": "dist/index.js",
8
8
  "types": "dist/index.d.ts",
9
9
  "exports": {
@@ -31,16 +31,19 @@
31
31
  },
32
32
  "repository": {
33
33
  "type": "git",
34
- "url": "https://github.com/xtaskjs/xtaskjs.git",
34
+ "url": "https://github.com/xtaskjs/xtask.git",
35
35
  "directory": "packages/security"
36
36
  },
37
+ "bugs": {
38
+ "url": "https://github.com/xtaskjs/xtask/issues"
39
+ },
37
40
  "publishConfig": {
38
41
  "access": "public"
39
42
  },
40
43
  "license": "MIT",
41
44
  "dependencies": {
42
- "@xtaskjs/common": "^1.0.20",
43
- "@xtaskjs/core": "^1.0.20",
45
+ "@xtaskjs/common": "^1.0.22",
46
+ "@xtaskjs/core": "^1.0.22",
44
47
  "passport": "^0.7.0",
45
48
  "passport-jwt": "^4.0.1",
46
49
  "passport-strategy": "^1.0.0"