Path: blob/master/node_modules/@szmarczak/http-timer/package.json
1126 views
{1"name": "@szmarczak/http-timer",2"version": "4.0.6",3"description": "Timings for HTTP requests",4"main": "dist/source",5"engines": {6"node": ">=10"7},8"scripts": {9"test": "xo && tsc --noEmit && nyc ava",10"build": "del-cli dist && tsc",11"prepare": "npm run build",12"coveralls": "nyc report --reporter=text-lcov | coveralls"13},14"files": [15"dist/source"16],17"keywords": [18"http",19"https",20"timer",21"timings"22],23"repository": {24"type": "git",25"url": "git+https://github.com/szmarczak/http-timer.git"26},27"author": "Szymon Marczak",28"license": "MIT",29"bugs": {30"url": "https://github.com/szmarczak/http-timer/issues"31},32"homepage": "https://github.com/szmarczak/http-timer#readme",33"dependencies": {34"defer-to-connect": "^2.0.0"35},36"devDependencies": {37"@ava/typescript": "^2.0.0",38"@sindresorhus/tsconfig": "^1.0.2",39"@types/node": "^16.3.1",40"ava": "^3.15.0",41"coveralls": "^3.1.1",42"del-cli": "^3.0.1",43"http2-wrapper": "^2.0.7",44"nyc": "^15.1.0",45"p-event": "^4.2.0",46"typescript": "^4.3.5",47"xo": "^0.39.1"48},49"types": "dist/source",50"nyc": {51"extension": [52".ts"53],54"exclude": [55"**/tests/**"56]57},58"xo": {59"rules": {60"@typescript-eslint/no-non-null-assertion": "off"61}62},63"ava": {64"typescript": {65"compile": false,66"rewritePaths": {67"tests/": "dist/tests/"68}69}70}71}727374