UNPKG

wpt-api-client

Version:

Unofficial Node.js client for the WebPageTest REST API

49 lines (48 loc) 1.4 kB
{ "name": "wpt-api-client", "version": "1.0.0", "description": "Unofficial Node.js client for the WebPageTest REST API", "author": "Giacomo Debidda <jackdebidda@gmail.com>", "license": "MIT", "main": "lib/cjs/index.js", "module": "./lib/es2015/index.js", "types": "lib/cjs/index.d.ts", "files": [ "lib" ], "homepage": "https://github.com/jackdbd/webperf/tree/main/packages/wpt-api-client", "repository": { "type": "git", "url": "https://github.com/jackdbd/webperf.git" }, "bugs": { "url": "https://github.com/jackdbd/webperf/issues" }, "keywords": [ "monitoring", "node", "perfmatters", "performance", "sitespeed", "web", "web-performance", "webpagetest", "webperf" ], "scripts": { "prebuild": "run-s clean format format-check lint", "build": "tsc -p tsconfig.es5.json && tsc -p tsconfig.es2015.json", "clean": "rm -rf coverage lib", "format": "prettier --config .prettierrc.js --write **/*.ts", "format-check": "prettier --config .prettierrc.js --check **/*.ts", "lint": "eslint --config .eslintrc.js {src,__tests__}/**/*.ts", "nuke": "npm run clean && rm -rf node_modules package-lock.json", "test": "jest", "test:ci": "jest --ci --coverage", "test:network": "jest --testNamePattern=network" }, "dependencies": { "phin": "^3.5.1" }, "devDependencies": {} }