{ "_args": [ [ "nodemon", "/home/beppe/Github/yahooApi" ] ], "_from": "nodemon@latest", "_hasShrinkwrap": false, "_id": "nodemon@1.18.9", "_inCache": true, "_installable": true, "_location": "/nodemon", "_nodeVersion": "11.4.0", "_npmOperationalInternal": { "host": "s3://npm-registry-packages", "tmp": "tmp/nodemon_1.18.9_1544809647170_0.824990844709981" }, "_npmUser": { "email": "remy@leftlogic.com", "name": "remy" }, "_npmVersion": "6.4.1", "_phantomChildren": {}, "_requested": { "name": "nodemon", "raw": "nodemon", "rawSpec": "", "scope": null, "spec": "latest", "type": "tag" }, "_requiredBy": [ "#USER" ], "_resolved": "https://registry.npmjs.org/nodemon/-/nodemon-1.18.9.tgz", "_shasum": "90b467efd3b3c81b9453380aeb2a2cba535d0ead", "_shrinkwrap": null, "_spec": "nodemon", "_where": "/home/beppe/Github/yahooApi", "author": { "name": "Remy Sharp", "url": "http://github.com/remy" }, "bin": { "nodemon": "./bin/nodemon.js" }, "bugs": { "url": "https://github.com/remy/nodemon/issues" }, "dependencies": { "chokidar": "^2.0.4", "debug": "^3.1.0", "ignore-by-default": "^1.0.1", "minimatch": "^3.0.4", "pstree.remy": "^1.1.6", "semver": "^5.5.0", "supports-color": "^5.2.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.3.3", "proxyquire": "^1.8.0", "semantic-release": "^8.2.0", "should": "~4.0.0" }, "directories": {}, "dist": { "fileCount": 42, "integrity": "sha512-oj/eEVTEI47pzYAjGkpcNw0xYwTl4XSTUQv2NPQI6PpN3b75PhpuYk3Vb3U80xHCyM2Jm+1j68ULHXl4OR3Afw==", "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcE+ywCRA9TVsSAnZWagAAduIP/0CkRHoIjvm30aqOXvaP\nlkTwvTKJkllQD9boF2KuL/Uc6vmiWNGuNCX9UZDkdPZWNo3isWuu62uJ8Mew\ngklUPFjOLCv8757O2YSq0TwhGcLDBOcilobqhTWIE3Xf8jirgbsLl+0uERft\ny67dtkNt4JjDmkpbvzhD/txbJjS7fTBz8Spkh8eI3CTCzfsLxSB0Q8gGkeRE\n0CMm4J6lHxstIY1VaKN04hg7zXtTcMY70JD7+U7kA/Bu0m/vAKru5JpVVRqe\n9Pq0J0jg1xkAX4LkIqggvOEnidVCcL2ziflZpvjXe8JMSEhLcUqcwPWmtHUE\nVVSb65p/YsmfXA6fpePOloMXY88V7sLm7OQHiycz+kITuEYzXwJyfrDCYH9u\nez/InU3TG9HOc5Ps5nvs3qXvkrzus9wdp+9rn2dMCqnTr+stsU3EbuyK//Ns\n/Bn49PjNCP2m2ulKxGcQElw9w67Bt6DVgRxp/ZqfkPsn/Wo+psFMpHU7Hi2a\n2kU40glb34JspgDLsMNhuW0GYM1O7T0hHv+ykpGjW8kAnyeCbWnyG7iuRXEJ\nmvHdjcKj8Xb7wuFkm9fH7zFJ4obWkO2nvQS0p9m25Nhc07BhK0o1V3XVQ4vx\nYSz+pCQu8oJotbRgGvZJZrniy5sJRP9B6VjBX+unGw2D0DqxBc4Ot1nWh64n\nfZaC\r\n=2MO1\r\n-----END PGP SIGNATURE-----\r\n", "shasum": "90b467efd3b3c81b9453380aeb2a2cba535d0ead", "tarball": "https://registry.npmjs.org/nodemon/-/nodemon-1.18.9.tgz", "unpackedSize": 104019 }, "engines": { "node": ">=4" }, "gitHead": "dd0b96a9438f9c068c85f4ed88a5dc6709577855", "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": "1.18.9" }