UNPKG

statsd-lambda

Version:

A simple UDP based statsd client designed for functions as a service

48 lines (47 loc) 1.38 kB
{ "name": "statsd-lambda", "version": "2.0.1", "description": "A simple UDP based statsd client designed for functions as a service", "main": "dist/index.js", "module": "dist/index-esm.js", "types": "dist/index.d.ts", "repository": "git@github.com:bustle/statsd-lambda.git", "homepage": "https://github.com/bustle/statsd-lambda", "runkitExampleFilename": "example.js", "scripts": { "test": "npm run unit-test && npm run lint", "unit-test": "mocha --opts lib/mocha.opts", "lint": "tsc && tslint lib/*.ts", "format": "tslint lib/*.ts --fix", "build": "tsc -p tsconfig-build.json && rollup -c rollup.config-esm.js && rollup -c rollup.config-umd.js && node bundle-types.js", "prepare": "npm run build" }, "keywords": [ "statsd", "lambda", "FAAS", "metrics", "udp" ], "author": "reconbot", "license": "MIT", "dependencies": {}, "devDependencies": { "@microsoft/api-extractor": "^6.3.0", "@types/chai": "^4.1.7", "@types/mocha": "^5.2.5", "@types/node": "^10.14.5", "mocha": "^5.2.0", "prettier": "^1.15.2", "rollup": "^1.4.1", "rollup-plugin-node-resolve": "^4.0.1", "ts-node": "^7.0.1", "tslint": "^5.11.0", "tslint-config-prettier": "^1.16.0", "tslint-plugin-prettier": "^2.0.1", "typescript": "^3.3.3333" }, "engines": { "node": ">=8" } }