UNPKG

consul

Version:
46 lines 1.26 kB
{ "name": "consul", "version": "2.0.1", "description": "Consul client", "main": "./lib", "types": "./lib/index.d.ts", "files": [ "./lib" ], "dependencies": { "papi": "^1.1.0", "uuid": "^10.0.0" }, "devDependencies": { "@types/node": "^22.7.6", "async": "^3.2.0", "debug": "^4.3.1", "jshint": "^2.5.5", "mocha": "^10.7.3", "nock": "^13.0.7", "nyc": "^17.1.0", "prettier": "^3.3.3", "should": "^13.2.1", "sinon": "^19.0.2", "temp": "^0.9.4" }, "keywords": [ "consul" ], "repository": { "type": "git", "url": "https://github.com/silas/node-consul.git" }, "bugs": { "url": "https://github.com/silas/node-consul/issues" }, "author": "Silas Sewell <silas@sewell.org>", "license": "MIT", "scripts": { "format": "prettier -w .", "test": "jshint lib test && prettier -c . && nyc mocha -- --recursive --check-leaks && nyc check-coverage --statements 100 --functions 100 --branches 100 --lines 100", "types": "dtslint test/types", "acceptance": "ACCEPTANCE=true nyc mocha -- test/acceptance --recursive --check-leaks --timeout 30000", "acceptanceSetupMacOS": "sudo ifconfig lo0 alias 127.0.0.2 up && sudo ifconfig lo0 alias 127.0.0.3 up" } }