skillsauth 0.1.0
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.
- package/README.md +20 -0
- package/index.js +11 -0
- package/package.json +21 -0
package/README.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# SkillsAuth
|
|
2
|
+
|
|
3
|
+
Skills authentication and verification (in development).
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install skillsauth
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
```javascript
|
|
14
|
+
const skillsauth = require('skillsauth');
|
|
15
|
+
console.log(skillsauth.description);
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## License
|
|
19
|
+
|
|
20
|
+
MIT
|
package/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "skillsauth",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Skills authentication and verification (in development)",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"keywords": ["ai", "skills", "auth", "verification", "registry"],
|
|
7
|
+
"author": "Himanshu",
|
|
8
|
+
"license": "MIT",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/beinghimansh/skillsauth.git"
|
|
12
|
+
},
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/beinghimansh/skillsauth/issues"
|
|
15
|
+
},
|
|
16
|
+
"homepage": "https://github.com/beinghimansh/skillsauth#readme",
|
|
17
|
+
"files": [
|
|
18
|
+
"index.js",
|
|
19
|
+
"README.md"
|
|
20
|
+
]
|
|
21
|
+
}
|