UNPKG

1.42 kBJSONView Raw
1{
2 "name": "@szmarczak/http-timer",
3 "version": "4.0.2",
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": "^1.1.0",
39 "@sindresorhus/tsconfig": "^0.7.0",
40 "@types/node": "^13.5.1",
41 "@typescript-eslint/eslint-plugin": "^2.18.0",
42 "@typescript-eslint/parser": "^2.18.0",
43 "ava": "^3.2.0",
44 "coveralls": "^3.0.9",
45 "del-cli": "^3.0.0",
46 "eslint-config-xo-typescript": "^0.24.1",
47 "nyc": "^15.0.0",
48 "p-event": "^4.1.0",
49 "typescript": "^3.7.5",
50 "xo": "^0.25.3"
51 },
52 "types": "dist/source",
53 "xo": {
54 "extends": "xo-typescript",
55 "extensions": [
56 "ts"
57 ]
58 },
59 "nyc": {
60 "extension": [
61 ".ts"
62 ]
63 },
64 "ava": {
65 "typescript": {
66 "rewritePaths": {
67 "tests/": "dist/tests/"
68 }
69 }
70 }
71}