| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 | {  "name": "assert-options",  "version": "0.8.1",  "description": "Generic options parameter handling.",  "main": "dist/src/index.js",  "types": "dist/src/index.d.ts",  "scripts": {    "all": "tsc && npm test && npm run lint",    "lint": "tslint --fix ./src/**/*.ts ./test/**/*.ts",    "test": "nyc mocha -r ts-node/register test/**/*.spec.ts"  },  "files": [    "dist/src",    "dist/index.js"  ],  "homepage": "https://github.com/vitaly-t/assert-options",  "repository": {    "type": "git",    "url": "https://github.com/vitaly-t/assert-options.git"  },  "bugs": {    "url": "https://github.com/vitaly-t/assert-options/issues",    "email": "vitaly.tomilov@gmail.com"  },  "keywords": [    "assert",    "options"  ],  "author": {    "name": "Vitaly Tomilov",    "email": "vitaly.tomilov@gmail.com"  },  "license": "MIT",  "engines": {    "node": ">=10.0.0"  },  "devDependencies": {    "@types/chai": "4.3.4",    "@types/mocha": "10.0.1",    "@types/node": "18.15.3",    "chai": "4.3.7",    "mocha": "10.2.0",    "mocha-lcov-reporter": "1.3.0",    "nyc": "15.1.0",    "ts-node": "10.9.1",    "tslint": "6.1.3",    "typescript": "5.0.2"  }}
 |