UNPKG

1.49 kBJSONView Raw
1{
2 "name": "@szmarczak/http-timer",
3 "version": "3.1.1",
4 "description": "Timings for HTTP requests",
5 "main": "dist",
6 "engines": {
7 "node": ">=10"
8 },
9 "scripts": {
10 "test": "xo && nyc ava",
11 "build": "del-cli dist && tsc",
12 "prepublishOnly": "npm run build",
13 "coveralls": "nyc report --reporter=text-lcov | coveralls"
14 },
15 "files": [
16 "dist"
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": "^1.1.1"
36 },
37 "devDependencies": {
38 "@sindresorhus/tsconfig": "^0.3.0",
39 "@types/node": "^11.13.6",
40 "@typescript-eslint/eslint-plugin": "^1.11.0",
41 "@typescript-eslint/parser": "^1.11.0",
42 "ava": "^2.1.0",
43 "coveralls": "^3.0.3",
44 "del-cli": "^1.1.0",
45 "eslint-config-xo-typescript": "^0.15.0",
46 "nyc": "^14.0.0",
47 "p-event": "^4.1.0",
48 "ts-node": "^8.1.0",
49 "typescript": "^3.4.4",
50 "xo": "^0.24.0"
51 },
52 "types": "dist",
53 "xo": {
54 "extends": "xo-typescript",
55 "extensions": [
56 "ts"
57 ],
58 "rules": {
59 "ava/no-ignored-test-files": "off"
60 }
61 },
62 "nyc": {
63 "extension": [
64 ".ts"
65 ]
66 },
67 "ava": {
68 "babel": false,
69 "compileEnhancements": false,
70 "extensions": [
71 "ts"
72 ],
73 "require": [
74 "ts-node/register"
75 ]
76 }
77}