{ "_args": [ [ "nodemon", "/home/pablinux/Projects/Node/app_sigma" ] ], "_from": "nodemon@latest", "_hasShrinkwrap": false, "_id": "nodemon@2.0.2", "_inCache": true, "_installable": true, "_location": "/nodemon", "_nodeVersion": "12.13.1", "_npmOperationalInternal": { "host": "s3://npm-registry-packages", "tmp": "tmp/nodemon_2.0.2_1576074264387_0.10119073597465889" }, "_npmUser": { "email": "remy@leftlogic.com", "name": "remy" }, "_npmVersion": "6.12.1", "_phantomChildren": {}, "_requested": { "name": "nodemon", "raw": "nodemon", "rawSpec": "", "scope": null, "spec": "latest", "type": "tag" }, "_requiredBy": [ "#DEV:/" ], "_resolved": "https://registry.npmjs.org/nodemon/-/nodemon-2.0.2.tgz", "_shasum": "9c7efeaaf9b8259295a97e5d4585ba8f0cbe50b0", "_shrinkwrap": null, "_spec": "nodemon", "_where": "/home/pablinux/Projects/Node/app_sigma", "author": { "name": "Remy Sharp", "url": "http://github.com/remy" }, "bin": { "nodemon": "./bin/nodemon.js" }, "bugs": { "url": "https://github.com/remy/nodemon/issues" }, "dependencies": { "chokidar": "^3.2.2", "debug": "^3.2.6", "ignore-by-default": "^1.0.1", "minimatch": "^3.0.4", "pstree.remy": "^1.1.7", "semver": "^5.7.1", "supports-color": "^5.5.0", "touch": "^3.1.0", "undefsafe": "^2.0.2", "update-notifier": "^2.5.0" }, "description": "Simple monitor script for use during development of a node.js app.", "devDependencies": { "@commitlint/cli": "^3.1.3", "@commitlint/config-angular": "^3.1.1", "async": "1.4.2", "coffee-script": "~1.7.1", "husky": "^0.14.3", "istanbul": "^0.4.5", "jscs": "^3.0.7", "mocha": "^2.5.3", "proxyquire": "^1.8.0", "semantic-release": "^8.2.3", "should": "~4.0.0" }, "directories": {}, "dist": { "fileCount": 43, "integrity": "sha512-GWhYPMfde2+M0FsHnggIHXTqPDHXia32HRhh6H0d75Mt9FKUoCBvumNHr7LdrpPBTKxsWmIEOjoN+P4IU6Hcaw==", "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd8PwYCRA9TVsSAnZWagAAETQP/0XMeWEchz3slz7nDrh+\nsOodOuZ2ZPSJao4IXVBW5h73Yn0YHvZdekpGBHeyh1jFdGFMUCEbwke5ASBp\ntp95thwm+DDVe48Uh8kokveqcX3OhMxiRqFsEb7rNQtGdE7khXYLxvyHB69J\nLDjEA+D6qQTMqphLIuLqVpwOJdLzBBJcw/BO9Nqbkx8CP95ykZL06d3hBXOY\nZaHjQ6EtgBDqleRu2PPuPv88zAkOVGCxcQ2EvA0a18gndQly524RuUpIVxhL\nPdl/PyzsCqVee+l/FjskbXvrEylVrNnw6p/ryfabxZbVaED5P6hvEHNmCAUw\ne22oFpIYSPS+qbtlAWRDNnDi32SdFEX7Py5YVB9JJLriKWDhMMZBS0CpoDO7\n+d9oWayjK3pyvK0LtIqX5SibLKKv2b8fqK/MbDwAfYVM05xYhQ5MedYDBEQm\n2YZjH1wg7JS8fgESawuzRk/KnoM4mxbjcsmnWnGEo02oWeoXFl4K9roTtcy6\nA4jiAbX2CxSL09K93r6i++MIwHr/OVKAe65rujrlYUsrU1uIoQGeCKRLZzMu\n03t/SFHDNHyshuZrXClhSzFEMTm3lqL8YFluLJuBJkLfCtOztFbs4XaHqHvX\n7r/ogt8Lu5ogDq1RMMpkqFv2/Fu2oXYi2aayP+eA4NCr9V5PHUEtQScXnqcl\nOcYA\r\n=vglI\r\n-----END PGP SIGNATURE-----\r\n", "shasum": "9c7efeaaf9b8259295a97e5d4585ba8f0cbe50b0", "tarball": "https://registry.npmjs.org/nodemon/-/nodemon-2.0.2.tgz", "unpackedSize": 106413 }, "engines": { "node": ">=8.10.0" }, "gitHead": "cd45d74593be411eba39481e5a8360c39079b118", "homepage": "http://nodemon.io", "keywords": [ "autoload", "development", "monitor", "reload", "restart", "terminal" ], "license": "MIT", "main": "./lib/nodemon", "maintainers": [ { "name": "remy", "email": "remy@leftlogic.com" } ], "name": "nodemon", "optionalDependencies": {}, "readme": "ERROR: No README data found!", "repository": { "type": "git", "url": "git+https://github.com/remy/nodemon.git" }, "scripts": { ":spec": "mocha --timeout 30000 --ui bdd test/**/*.test.js", "clean": "rm -rf test/fixtures/test*.js test/fixtures/test*.md", "commitmsg": "commitlint -e", "coverage": "istanbul cover _mocha -- --timeout 30000 --ui bdd --reporter list test/**/*.test.js", "killall": "ps auxww | grep node | grep -v grep | awk '{ print $2 }' | xargs kill -9", "lint": "jscs lib/**/*.js -v", "postinstall": "node bin/postinstall || exit 0", "postspec": "npm run clean", "prepush": "npm run lint", "semantic-release": "semantic-release pre && npm publish && semantic-release post", "spec": "for FILE in test/**/*.test.js; do echo $FILE; TEST=1 mocha --exit --timeout 30000 $FILE; if [ $? -ne 0 ]; then exit 1; fi; sleep 1; done", "test": "npm run lint && npm run spec", "web": "node web" }, "version": "2.0.2" }