CoolFace
Apppublic

opusdev/vector-similarity-api

sourceHugging Faceupdated 5mo agoView on Hugging Face
1likes
package.json76 linesDownload Raw Back to nodemon
1{2  "name": "nodemon",3  "homepage": "https://nodemon.io",4  "author": {5    "name": "Remy Sharp",6    "url": "https://github.com/remy"7  },8  "bin": {9    "nodemon": "./bin/nodemon.js"10  },11  "engines": {12    "node": ">=10"13  },14  "repository": {15    "type": "git",16    "url": "https://github.com/remy/nodemon.git"17  },18  "description": "Simple monitor script for use during development of a Node.js app.",19  "keywords": [20    "cli",21    "monitor",22    "monitor",23    "development",24    "restart",25    "autoload",26    "reload",27    "terminal"28  ],29  "license": "MIT",30  "types": "./index.d.ts",31  "main": "./lib/nodemon",32  "scripts": {33    "commitmsg": "commitlint -e",34    "coverage": "istanbul cover _mocha -- --timeout 30000 --ui bdd --reporter list test/**/*.test.js",35    "lint": "eslint lib/**/*.js",36    "test": "npm run lint && npm run spec",37    "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",38    "postspec": "npm run clean",39    "clean": "rm -rf test/fixtures/test*.js test/fixtures/test*.md",40    "web": "node web",41    "semantic-release": "semantic-release",42    "prepush": "npm run lint",43    "killall": "ps auxww | grep node | grep -v grep | awk '{ print $2 }' | xargs kill -9"44  },45  "devDependencies": {46    "@commitlint/cli": "^11.0.0",47    "@commitlint/config-conventional": "^11.0.0",48    "async": "1.4.2",49    "coffee-script": "~1.7.1",50    "eslint": "^7.32.0",51    "husky": "^7.0.4",52    "mocha": "^2.5.3",53    "nyc": "^15.1.0",54    "proxyquire": "^1.8.0",55    "semantic-release": "^18.0.0",56    "should": "~4.0.0"57  },58  "dependencies": {59    "chokidar": "^3.5.2",60    "debug": "^4",61    "ignore-by-default": "^1.0.1",62    "minimatch": "^3.1.2",63    "pstree.remy": "^1.1.8",64    "semver": "^7.5.3",65    "simple-update-notifier": "^2.0.0",66    "supports-color": "^5.5.0",67    "touch": "^3.1.0",68    "undefsafe": "^2.0.5"69  },70  "version": "3.1.11",71  "funding": {72    "type": "opencollective",73    "url": "https://opencollective.com/nodemon"74  }75}76