UNPKG

tripledoc

Version:

Library to read, create and update documents on a Solid Pod

81 lines (80 loc) 1.73 kB
{ "name": "chokidar", "description": "A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.", "version": "3.0.2", "homepage": "https://github.com/paulmillr/chokidar", "author": "Paul Miller (https://paulmillr.com)", "contributors": [ "Paul Miller (https://paulmillr.com)", "Elan Shanker" ], "engines": { "node": ">= 8" }, "dependencies": { "anymatch": "^3.0.1", "braces": "^3.0.2", "glob-parent": "^5.0.0", "is-binary-path": "^2.1.0", "is-glob": "^4.0.1", "normalize-path": "^3.0.0", "readdirp": "^3.1.1" }, "optionalDependencies": { "fsevents": "^2.0.6" }, "devDependencies": { "@types/node": "^12", "chai": "^4.2", "coveralls": "^3", "dtslint": "0.4.1", "jshint": "^2.10.1", "mocha": "^6.1.3", "nyc": "^14.0.0", "rimraf": "^2.6.3", "sinon": "^7.3.1", "sinon-chai": "^3.3.0", "upath": "^1.1.2" }, "files": [ "index.js", "lib/", "types/index.d.ts" ], "repository": { "type": "git", "url": "https://github.com/paulmillr/chokidar.git" }, "bugs": { "url": "https://github.com/paulmillr/chokidar/issues" }, "license": "MIT", "scripts": { "test": "nyc mocha --exit", "mocha": "mocha", "lint": "jshint index.js lib", "coveralls": "nyc report --reporter=text-lcov | coveralls", "dtslint": "dtslint types" }, "keywords": [ "fs", "watch", "watchFile", "watcher", "watching", "file", "fsevents" ], "types": "./types/index.d.ts", "jshintConfig": { "node": true, "curly": false, "bitwise": false, "mocha": true, "expr": true, "esversion": 8, "predef": [ "toString" ] } }