UNPKG

kibconfig

Version:

A small library to sync Kibana config objects (dashboards, visuals, searches, etc...) with a local directory

60 lines (59 loc) 1.76 kB
{ "name": "kibconfig", "version": "0.2.1", "description": "A small library to sync Kibana config objects (dashboards, visuals, searches, etc...) with a local directory", "main": "index.js", "scripts": { "build": "yarn run test && npm run compile", "test": "yarn run lint && npm run test:unit", "test:unit": "mocha test/unit", "test:watch": "mocha test/unit -w", "lint": "eslint src test/unit", "compile": "babel -d lib/ src/" }, "bin": { "kibconfig": "index.js" }, "repository": { "type": "git", "url": "git+https://github.com/codecentric/kibconfig.git" }, "keywords": [ "kibana", "ELK", "dashboards" ], "author": "Carsten Rohrbach <carsten.rohrbach@codecentric.de> (https://www.codecentric.de/team/profil/\\?profil\\=cmj)", "license": "GPL-3.0", "bugs": { "url": "https://github.com/codecentric/kibconfig/issues" }, "homepage": "https://github.com/codecentric/kibconfig#readme", "dependencies": { "babel-runtime": "^6.26.0", "commander": "^2.9.0", "find-config": "^1.0.0", "fs-promise": "latest", "json-stable-stringify": "^1.0.1", "promise-limit": "^2.5.0", "superagent": "^3.6.3" }, "devDependencies": { "babel-cli": "^6.26.0", "babel-eslint": "^8.0.1", "babel-plugin-add-module-exports": "^0.2.1", "babel-plugin-transform-runtime": "^6.9.0", "babel-preset-es2015": "^6.9.0", "babel-preset-stage-0": "^6.5.0", "chai": "^4.1.2", "chai-as-promised": "^7.1.1", "eslint": "^4.8.0", "eslint-config-airbnb-base": "^12.0.2", "eslint-plugin-babel": "^4.1.2", "eslint-plugin-import": "^2.7.0", "mocha": "^4.0.1", "nock": "^9.0.22", "sinon": "^4.0.1", "sinon-chai": "^2.14.0" } }