UNPKG

httpbis-digest-headers

Version:

Create and verify content digests as found in HTTP headers according to draft-ietf-httpbis-digest-headers

56 lines (55 loc) 1.58 kB
{ "name": "httpbis-digest-headers", "version": "1.0.0", "description": "Create and verify content digests as found in HTTP headers according to draft-ietf-httpbis-digest-headers", "main": "lib/index.js", "types": "lib/index.d.ts", "scripts": { "build": "tsc", "lint": "eslint -c .eslintrc ./src/**/*.ts ./test/**/*.ts", "lint:fix": "npm run lint --silent -- --fix", "prepare": "npm run build", "preversion": "npm run lint", "coverage": "tsc && nyc --reporter=html npm run test", "test": "mocha -r ts-node/register test/**/*.ts" }, "files": [ "lib/" ], "repository": { "type": "git", "url": "git+https://github.com/interledger/httpbis-digest-headers.git" }, "keywords": [ "http", "content-digest", "headers", "ietf", "httpbis" ], "author": "Adrian Hope-Bailie", "license": "MIT", "bugs": { "url": "https://github.com/interledger/httpbis-digest-headers/issues" }, "homepage": "https://github.com/interledger/httpbis-digest-headers#readme", "devDependencies": { "@istanbuljs/nyc-config-typescript": "^1.0.2", "@tsconfig/node12": "^1.0.11", "@types/chai": "^4.3.3", "@types/mocha": "^9.1.1", "@types/node": "^18.7.21", "@typescript-eslint/eslint-plugin": "^5.36.1", "@typescript-eslint/parser": "^5.36.1", "chai": "^4.3.6", "eslint": "^8.24.0", "mocha": "^10.0.0", "nyc": "^15.1.0", "source-map-support": "^0.5.21", "ts-node": "^10.9.1", "typescript": "^4.8.2" }, "dependencies": { "structured-headers": "^0.5.0" } }