This commit is contained in:
Akko
2025-08-04 18:57:35 +02:00
parent 8cf6e78a79
commit 9495868c2e
5030 changed files with 518594 additions and 17609 deletions

39
node_modules/builtin-status-codes/package.json generated vendored Normal file
View File

@@ -0,0 +1,39 @@
{
"name": "builtin-status-codes",
"main": "index.js",
"browser": "browser.js",
"version": "3.0.0",
"description": "The map of HTTP status codes from the builtin http module",
"license": "MIT",
"repository": "bendrucker/builtin-status-codes",
"author": {
"name": "Ben Drucker",
"email": "bvdrucker@gmail.com",
"url": "bendrucker.me"
},
"scripts": {
"test": "standard && tape test.js",
"build": "node build.js"
},
"keywords": [
"http",
"status",
"codes",
"builtin",
"map"
],
"devDependencies": {
"tape": "^4.0.0",
"standard": "^4.0.0"
},
"files": [
"index.js",
"browser.js",
"build.js"
],
"standard": {
"ignore": [
"browser.js"
]
}
}