@gquittet/graceful-server
Advanced tools
Comparing version 5.2.2-alpha1 to 5.2.2-alpha2
# Released under MIT License | ||
Copyright (c) 2020 Guillaume Quittet. | ||
Copyright (c) 2024 Guillaume Quittet. | ||
@@ -5,0 +5,0 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: |
{ | ||
"name": "@gquittet/graceful-server", | ||
"version": "5.2.2-alpha1", | ||
"version": "5.2.2-alpha2", | ||
"description": "Tiny (~5k), dependency-free Node.JS library to make your API more graceful", | ||
@@ -10,3 +10,3 @@ "license": "MIT", | ||
"type": "git", | ||
"url": "git@https://github.com/gquittet/graceful-server.git" | ||
"url": "git+https://github.com/gquittet/graceful-server.git" | ||
}, | ||
@@ -23,6 +23,14 @@ "bugs": { | ||
".": { | ||
"require": "./lib/index.cjs", | ||
"import": "./lib/index.mjs", | ||
"types": "./lib/index.d.ts", | ||
"default": "./lib/index.mjs" | ||
"require": { | ||
"types": "./lib/index.d.ts", | ||
"default": "./lib/index.cjs" | ||
}, | ||
"import": { | ||
"types": "./lib/index.d.ts", | ||
"default": "./lib/index.mjs" | ||
}, | ||
"default": { | ||
"types": "./lib/index.d.ts", | ||
"default": "./lib/index.mjs" | ||
} | ||
} | ||
@@ -29,0 +37,0 @@ }, |
34258