From 997ca352d8bf709396233ebe7181c32739e94e63 Mon Sep 17 00:00:00 2001 From: ION606 Date: Fri, 31 May 2024 11:06:16 -0400 Subject: [PATCH] updated README and package.json --- README.md | 4 ++++ package.json | 15 ++++++++++++--- 2 files changed, 16 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d703661..f9b40b8 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,10 @@ You can use your LinkedIn credentials in code, making this super simple to use! *This project was HEAVILY inspired by Tomquirk's LinkedIn-API PyPy package, which you can find at https://github.com/tomquirk/linkedin-api* +## Installation +`npm i linkedin-api-js` + + ## Quick-Start ```JS // log in diff --git a/package.json b/package.json index e4e5ce4..d88e2c2 100644 --- a/package.json +++ b/package.json @@ -10,10 +10,19 @@ "name": "linkedin-api-js", "version": "1.0.0-21", "main": "index.js", + "repository": { + "type": "git", + "url": "https://github.com/ION606/linkedin-api" + }, + "homepage": "https://github.com/ION606/linkedin-api?tab=readme-ov-file#linkedin-api", "scripts": { - "test": "echo \"Error: no test specified\" && exit 1" + "test": "node tests/companyTests.js" }, "author": "ION606", - "license": "ISC", - "description": "" + "license": "MIT", + "description": "An actually useful LinkedIn Nodejs package", + "bugs": { + "url": "https://github.com/ION606/linkedin-api/issues" + }, + "keywords": ["linkedin", "linkedin api", "linkedin-api"] }