webservices/node_modules/node-red-admin/package.json

74 lines
1.7 KiB
JSON

{
"name": "node-red-admin",
"version": "4.0.1",
"description": "The Node-RED admin command line interface",
"homepage": "https://nodered.org",
"bugs": {
"url": "https://github.com/node-red/node-red-admin/issues/"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/node-red/node-red-admin.git"
},
"main": "lib/index.js",
"engines": {
"node": ">=18"
},
"contributors": [
{
"name": "Nick O'Leary"
},
{
"name": "Anna Thomas"
}
],
"scripts": {
"test": "nyc mocha",
"coverage": "nyc report --reporter=lcov"
},
"dependencies": {
"ansi-colors": "^4.1.3",
"axios": "^1.7.7",
"bcryptjs": "^2.4.3",
"cli-table": "^0.3.11",
"enquirer": "^2.3.6",
"minimist": "^1.2.8",
"mustache": "^4.2.0",
"read": "^3.0.1"
},
"devDependencies": {
"mocha": "^10.7.3",
"nyc": "^15.1.0",
"should": "^13.2.3",
"sinon": "^15.2.0",
"sinon-test": "^3.1.6"
},
"optionalDependencies": {
"@node-rs/bcrypt": "1.10.4"
},
"bin": {
"node-red-admin": "node-red-admin.js"
},
"mocha": {
"spec:": "test/**/*.spec.js",
"diff": true,
"extension": [
"js"
],
"opts": false,
"package": "./package.json",
"reporter": "spec",
"slow": 75,
"timeout": 2000,
"ui": "bdd",
"recursive": "true",
"watch-files": [
"lib/**/*.js",
"test/**/*.js"
],
"watch-ignore": [
"lib/vendor"
]
}
}