-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
43 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
# Changelog | ||
|
||
### 0.1.5 | ||
|
||
Changes in this version: | ||
|
||
* feature: sockets | ||
|
||
### 0.1.4 | ||
|
||
What changed in this version? | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,7 +48,7 @@ To set up the Generic Node.js Express API, follow these steps: | |
|
||
1. Clone this repository to your local machine: | ||
```bash | ||
git clone [email protected]:32teeth/generic-nodejs-express-api.git | ||
git clone [email protected]:npm-packages-collection/generic-nodejs-express-api.git | ||
``` | ||
2. Navigate into the project directory: | ||
```bash | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
{ | ||
"name": "generic-nodejs-express-api", | ||
"name": "@npm-packages-collection/generic-nodejs-express-api", | ||
"description": "Generic NodeJs Express API", | ||
"author": "Eugene Yevhen Andruszczenko <[email protected]>", | ||
"contributors": [ | ||
"32teeth <[email protected]> (https://github.com/32teeth)" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/32teeth/generic-nodejs-express-api.git" | ||
"url": "git+https://github.com/npm-packages-collection/generic-nodejs-express-api.git" | ||
}, | ||
"license": "CC-BY-SA-4.0", | ||
"version": "0.1.4", | ||
"version": "0.1.5", | ||
"keywords": [ | ||
"nodejs", | ||
"express", | ||
|
@@ -20,7 +20,7 @@ | |
"web" | ||
], | ||
"publishConfig": { | ||
"registry": "https://registry.npmjs.com/" | ||
"registry": "https://npm.pkg.github.com/" | ||
}, | ||
"engines": { | ||
"node": "20.x", | ||
|
@@ -60,7 +60,10 @@ | |
"heroku-prebuild": "echo This runs before Heroku installs dependencies.", | ||
"heroku-postbuild": "echo This runs after Heroku installs dependencies, but before Heroku prunes and caches dependencies.", | ||
"heroku-cleanup": "echo This runs after Heroku prunes and caches dependencies.", | ||
"test": "mocha" | ||
"test": "mocha", | ||
"publish:npm": "npm publish --registry https://registry.npmjs.org/", | ||
"publish:github": "npm publish --registry https://npm.pkg.github.com/", | ||
"publish": "npm run publish:npm && npm run publish:github" | ||
}, | ||
"pre-commit": { | ||
"run": "hook" | ||
|
@@ -84,10 +87,10 @@ | |
"sass": "^1.77.8" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/32teeth/generic-nodejs-express-api/issues" | ||
"url": "https://github.com/npm-packages-collection/generic-nodejs-express-api/issues" | ||
}, | ||
"homepage": "https://github.com/32teeth/generic-nodejs-express-api#readme", | ||
"homepage": "https://github.com/npm-packages-collection/generic-nodejs-express-api#readme", | ||
"directories": { | ||
"test": "test" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters