Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {
- "name": "menlolab-runner",
- "version": "0.1.4",
- "description": "The agent deployed on private and public infrastructure to manage tasks.",
- "main": "runner.js",
- "bin": "runner.js",
- "scripts": {
- "build": "npx pkg -t linux runner.js",
- "rpm-link": "ln -s ~/menlolab/runner ~/rpmbuild",
- "start": "node runner.js start",
- "spec": "speculate",
- "rpm": "npm run tar && cp ./runner.tar.gz ~/rpmbuild/SOURCES/runner.tar.gz",
- "tar": "tar -zcv --exclude='./rpm' --exclude='./Vagrantfile' --exclude='./.vagrant' --exclude='./.history' --exclude='./runner.tar.gz' -f runner.tar.gz ./",
- "package-deb": "npm run build && cp runner deb/menlolab-runner && cd deb && rm -f package-lock.json && ../node_modules/.bin/node-deb -- menlolab-runner",
- "package-deb-publish": "",
- "package-deb-clean": "rm -r deb/menlolab-runner*",
- "test": "nyc mocha -t 10000 --exit",
- "test-html": "nyc --reporter=lcov mocha -t 10000 --exit",
- "local-public-runner": "PUBLICSECRET=superSecret ADDRESS=http://localhost:4443 node runner.js start -j tmp/ -c config/local_public.yml",
- "local-private-runner-register": "ADDRESS=http://localhost:4443 node runner.js register -j tmp/ -c config/local_private.yml",
- "local-private-runner": "ADDRESS=http://localhost:4443 node runner.js start -j tmp/ -c config/local_private.yml",
- "stage-public-runner": "PUBLICSECRET=superSecret ADDRESS=https://runner.menlolab.io node runner.js start -j tmp/ -c config/stage_public.yml",
- "stage-private-runner-register": "ADDRESS=https://runner.menlolab.io node runner.js register -j tmp/ -c config/stage_private.yml",
- "stage-private-runner": "ADDRESS=https://runner.menlolab.io node runner.js start -j tmp/ -c config/stage_private.yml",
- "lint": "npx eslint --quiet */*.js"
- },
- "spec": {
- "post": [
- "ln -s /usr/lib/menlolab-runner/runner.js menlolab-runner",
- "chmod ugo+x /usr/lib/menlolab-runner/runner.js"
- ]
- },
- "files": [
- "./config",
- "./deb",
- "./lib",
- "./test",
- "./util",
- "/.gitignore",
- "./.gitlab-ci.yml",
- "./.gitmodules",
- "./README.md",
- "./package-lock.json",
- "./package.json",
- "./runner.js"
- ],
- "repository": {
- "type": "git",
- "url": "git+ssh://git@gitlab.com/MenloLab/runner.git"
- },
- "author": "Tyler Stiene <tyler@menlolab.com>",
- "license": "MIT",
- "bugs": {
- "url": "https://gitlab.com/MenloLab/runner/issues"
- },
- "homepage": "https://gitlab.com/MenloLab/runner#README",
- "eslintIgnore": [
- "/coverage",
- "/node_modules"
- ],
- "eslintConfig": {
- "extends": [
- "airbnb-base"
- ],
- "parserOptions": {
- "ecmaVersion": 2018
- },
- "env": {
- "node": true,
- "mocha": true
- },
- "rules": {
- "max-len": "off",
- "no-underscore-dangle": "off",
- "eqeqeq": "warn",
- "no-restricted-syntax": [
- "off",
- "BinaryExpression[operator='in']"
- ],
- "no-prototype-builtins": "off",
- "prefer-destructuring": "off",
- "no-param-reassign": "warn",
- "no-await-in-loop": "off",
- "global-require": "off",
- "no-console": "off",
- "no-loop-func": "off",
- "consistent-return": "warn",
- "no-unused-vars": [
- "error",
- {
- "varsIgnorePattern": "should|expect"
- }
- ]
- }
- },
- "dependencies": {
- "@sentry/node": "^5.4.2",
- "chai-exec": "^1.1.1",
- "chai-fs": "^2.0.0",
- "check-sudo": "^1.1.3",
- "chmodr": "^1.2.0",
- "command-exists": "^1.2.8",
- "commander": "^2.20.0",
- "debug": "^4.1.1",
- "dockerode": "^2.5.8",
- "fs-extra": "^8.0.1",
- "inquirer": "^6.4.1",
- "js-yaml": "^3.13.1",
- "moment": "^2.24.0",
- "node-rest-client": "^3.1.0",
- "node-vagrant": "^1.3.9",
- "npid": "^0.4.0",
- "pidusage": "^2.0.17",
- "request": "^2.88.0",
- "request-promise-native": "^1.0.7",
- "shelljs": "^0.8.3",
- "simple-git": "^1.116.0",
- "simple-zstd": "^1.0.0",
- "sinon": "^7.3.2",
- "sinon-chai": "^3.3.0",
- "socket.io-client": "^2.2.0",
- "ssh2shell": "^1.9.1",
- "systeminformation": "^4.12.2",
- "tar-fs": "^2.0.0"
- },
- "devDependencies": {
- "babel-eslint": "^10.0.2",
- "chai": "^4.2.0",
- "eslint": "^5.16.0",
- "eslint-config-airbnb-base": "^13.1.0",
- "eslint-import-resolver-node": "^0.3.2",
- "eslint-plugin-import": "^2.18.0",
- "eslint-plugin-mocha": "^5.3.0",
- "istanbul": "^0.4.5",
- "mocha": "^6.1.4",
- "node-deb": "^0.10.7",
- "nodemon": "^1.18.11",
- "nyc": "^14.1.1",
- "pkg": "^4.3.7",
- "s3rver": "^3.2.0",
- "speculate": "^2.0.0"
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement