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