diff options
author | 2020-11-16 00:10:28 +0100 | |
---|---|---|
committer | 2020-11-16 00:10:28 +0100 | |
commit | e06ec920f7a5d784e674c4c4b4e6d1da3dc7391d (patch) | |
tree | 55713f725f77b44ebfec86e4eec3ce33e71458ca /node_modules/nodemon/package.json | |
download | website_creator-e06ec920f7a5d784e674c4c4b4e6d1da3dc7391d.tar.gz website_creator-e06ec920f7a5d784e674c4c4b4e6d1da3dc7391d.tar.bz2 website_creator-e06ec920f7a5d784e674c4c4b4e6d1da3dc7391d.zip |
api, login, auth
Diffstat (limited to 'node_modules/nodemon/package.json')
-rw-r--r-- | node_modules/nodemon/package.json | 98 |
1 files changed, 98 insertions, 0 deletions
diff --git a/node_modules/nodemon/package.json b/node_modules/nodemon/package.json new file mode 100644 index 0000000..b50e354 --- /dev/null +++ b/node_modules/nodemon/package.json @@ -0,0 +1,98 @@ +{ + "_from": "nodemon@^1.19.0", + "_id": "nodemon@1.19.4", + "_inBundle": false, + "_integrity": "sha512-VGPaqQBNk193lrJFotBU8nvWZPqEZY2eIzymy2jjY0fJ9qIsxA0sxQ8ATPl0gZC645gijYEc1jtZvpS8QWzJGQ==", + "_location": "/nodemon", + "_phantomChildren": {}, + "_requested": { + "type": "range", + "registry": true, + "raw": "nodemon@^1.19.0", + "name": "nodemon", + "escapedName": "nodemon", + "rawSpec": "^1.19.0", + "saveSpec": null, + "fetchSpec": "^1.19.0" + }, + "_requiredBy": [ + "#DEV:/" + ], + "_resolved": "https://registry.npmjs.org/nodemon/-/nodemon-1.19.4.tgz", + "_shasum": "56db5c607408e0fdf8920d2b444819af1aae0971", + "_spec": "nodemon@^1.19.0", + "_where": "/home/pruss/Dev/3-minute-website", + "author": { + "name": "Remy Sharp", + "url": "http://github.com/remy" + }, + "bin": { + "nodemon": "bin/nodemon.js" + }, + "bugs": { + "url": "https://github.com/remy/nodemon/issues" + }, + "bundleDependencies": false, + "dependencies": { + "chokidar": "^2.1.8", + "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" + }, + "deprecated": false, + "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" + }, + "engines": { + "node": ">=4" + }, + "homepage": "http://nodemon.io", + "keywords": [ + "monitor", + "development", + "restart", + "autoload", + "reload", + "terminal" + ], + "license": "MIT", + "main": "./lib/nodemon", + "name": "nodemon", + "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.19.4" +} |