@opendxl/dxl-bootstrap
Version:
OpenDXL Bootstrap Application
64 lines (63 loc) • 1.54 kB
JSON
{
"name": "@opendxl/dxl-bootstrap",
"version": "0.1.1",
"author": "Musarubra US LLC",
"description": "OpenDXL Bootstrap Application",
"license": "Apache-2.0",
"keywords": [
"opendxl",
"dxl",
"trellix",
"bootstrap"
],
"files": [
"bin",
"lib",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@opendxl/dxl-client": "^0.1.0",
"ini": "^1.3.5",
"safe-buffer": "^5.1.1"
},
"devDependencies": {
"archiver": "^2.1.1",
"chai": "^4.1.2",
"inherits": "^2.0.3",
"jsdoc": "^4.0.3",
"jshint": "^2.9.5",
"mocha": "^10.7.3",
"rimraf": "^2.6.2",
"snazzy": "^7.0.0",
"standard": "^17.1.0",
"uuid": "^3.1.0"
},
"eslintConfig": {},
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/opendxl/opendxl-bootstrap-javascript.git"
},
"scripts": {
"predist": "npm install && rimraf *.tgz",
"dist": "npm pack && npm run doc && node scripts/dist.js",
"test": "mocha --recursive",
"lint": "npm run lint:jshint && npm run lint:standard",
"lint:jshint": "jshint lib scripts test",
"lint:standard": "standard | snazzy",
"preci": "npm run lint",
"ci": "npm run test",
"predoc": "rimraf out/jsdoc",
"doc": "jsdoc -c ./doc/conf.json doc/index.md -r lib/ -u doc/sdk -d out/jsdoc",
"postdoc": "node scripts/postdoc.js"
},
"standard": {
"env": [
"mocha"
]
}
}