UNPKG

roar-agent

Version:

The Node.js Roar Agent that listens for and executes scan jobs

102 lines (101 loc) 3.37 kB
{ "name": "roar-agent", "description": "The Node.js Roar Agent that listens for and executes scan jobs", "version": "1.5.12", "homepage": "https://bitbucket.com/liongard/roar-agent", "author": "Liongard, Inc <support@liongard.com> (https://developer.liongard.com/)", "keywords": [ "liongard", "roar", "agent" ], "repository": { "type": "git", "url": "https://bitbucket.com/liongard/roar-agent.git" }, "bugs": { "url": "https://liongard.atlassian.net/projects/ROAR/issues", "email": "support@liongard.com" }, "license": "BSD-3-Clause", "engines": { "node": ">= v0.6.0" }, "main": "./index.js", "pre-commit": [ "eslint", "test" ], "nyc": { "include": [ "src" ], "exclude": [ "test" ], "sourceMap": false, "instrument": false }, "dependencies": { "@slack/client": "^3.10.0", "amqplib": "^0.5.1", "error-formatter": "^1.0.5", "fs-extra": "^0.26.6", "glob": "^5.0.15", "lodash": "^4.6.1", "moment": "^2.11.2", "nedb": "^1.8.0", "promise": "^7.1.1", "request": "^2.8.31", "rimraf": "^2.5.2", "shelljs": "^0.7.6", "throng": "^4.0.0", "unzip-stream": "^0.1.2" }, "devDependencies": { "babel-cli": "^6.18.0", "babel-core": "^6.18.2", "babel-eslint": "^7.1.0", "babel-plugin-add-module-exports": "^0.2.1", "babel-plugin-istanbul": "^4.0.0", "babel-plugin-transform-async-to-generator": "^6.16.0", "babel-plugin-transform-class-properties": "^6.16.0", "babel-plugin-transform-decorators-legacy": "^1.3.4", "babel-plugin-transform-object-rest-spread": "^6.19.0", "babel-plugin-transform-runtime": "^6.15.0", "babel-preset-es2015": "^6.18.0", "babel-preset-stage-0": "^6.16.0", "chai": "^3.5.0", "david": "^11.0.0", "depcheck": "^0.6.7", "documentation": "^4.0.0-beta.18", "eslint": "^3.17.1", "expect": "^1.20.2", "mocha": "^3.2.0", "mocha-lcov-reporter": "^1.3.0", "mock-require": "^2.0.1", "nock": "0.36.2", "nyc": "^10.1.2", "pre-commit": "^1.2.2", "request": "^2.72.0", "rewire": "^2.5.2", "rimraf": "^2.6.1", "should": "^11.2.0", "sinon": "^1.17.7", "tmp": "0.0.31" }, "scripts": { "babel-node": "babel-node --presets es2015,stage-0 --plugins transform-async-to-generator,transform-class-properties,transform-decorators-legacy,transform-object-rest-spread,transform-runtime --ignore node_modules,public", "build": "rimraf build && ./node_modules/.bin/babel lib --out-dir build --source-maps", "coverage": "babel-node ./node_modules/.bin/nyc --reporter=html --reporter=text-summary --reporter=lcov --all --exclude=build/** --exclude=coverage/* --exclude=config* --exclude=test/** npm test", "check": "node dependencies-check.js", "clean": "rimraf build", "eslint": "eslint src", "prepublish": "npm run build", "publish": "npm run build && ./publish.sh", "postpublish": "PACKAGE_VERSION=$(cat package.json | grep version | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag $PACKAGE_VERSION && git push --tags", "start": "node build/index.js", "start-prod": "node build/index.js", "test": "NODE_ENV=test node_modules/mocha/bin/_mocha --compilers js:babel-core/register test/**/*.spec.js" } }