UNPKG

statuses-es

Version:
60 lines (59 loc) 1.59 kB
{ "name": "statuses-es", "description": "HTTP status utility", "version": "2.0.6", "contributors": [ "Evgenii Troinov <troinof@gmail.com>", "Douglas Christopher Wilson <doug@somethingdoug.com>", "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)" ], "repository": { "url": "git+https://github.com/etroynov/statuses-es.git" }, "license": "MIT", "keywords": [ "http", "status", "code" ], "files": [ "dist", "HISTORY.md", "LICENSE" ], "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "exports": { ".": { "require": "./dist/index.js", "import": "./dist/index.mjs", "types": "./dist/index.d.ts" } }, "devDependencies": { "@types/node": "20.14.10", "csv-parse": "5.5.6", "nyc": "17.0.0", "raw-body": "2.5.2", "stream-to-array": "2.3.0", "snazzy": "^9.0.0", "tsx": "^4.16.2", "ts-standard": "^12.0.2", "typescript": "^5.5.3", "tsup": "^8.1.0" }, "engines": { "node": ">= 0.8" }, "scripts": { "build": "tsup", "fetch": "node scripts/fetch-apache.js && node scripts/fetch-iana.js && node scripts/fetch-nginx.js && node scripts/fetch-node.js", "lint": "ts-standard . | snazzy", "test": "node --import tsx --test src/*.test.ts", "test:ci": "nyc --reporter=lcov --reporter=text npm test", "test:cov": "nyc --reporter=html --reporter=text npm test", "update": "npm run fetch && npm run build", "version": "node scripts/version-history.js && git add HISTORY.md" } }