Files
MaxScale/maxctrl/package.json
Markus Mäkelä cf8028a5ce MXS-1300: Un-modularize the core
Making the core a module proved to bring more problems than it solved. For
the sake of simplicity in installation and code coverage reporting, the
core is now completely contained in the `lib/` directory.

Also added preliminary coverage reporting with nyc.
2017-07-23 08:21:00 +03:00

38 lines
808 B
JSON

{
"name": "maxctrl",
"version": "1.0.0",
"description": "MaxScale Administrative Client",
"repository": "https://github.com/mariadb-corporation/MaxScale",
"main": "maxctrl.js",
"scripts": {
"test": "nyc mocha --timeout 15000 --slow 10000"
},
"keywords": [
"maxscale"
],
"bin": {
"maxctrl": "./maxctrl.js"
},
"author": "MariaDB Corporation Ab",
"license": "SEE LICENSE IN ../LICENSE.TXT",
"dependencies": {
"cli-table": "^0.3.1",
"lodash": "^4.17.4",
"lodash-getpath": "^0.2.4",
"request": "^2.81.0",
"request-promise-native": "^1.0.3",
"yargs": "^8.0.2"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"mocha": "^3.3.0",
"nyc": "^11.0.3"
},
"nyc": {
"include": [
"lib/*.js"
]
}
}