UNPKG

webdav-fs

Version:
62 lines (61 loc) 1.56 kB
{ "name": "webdav-fs", "version": "4.0.1", "description": "WebDAV wrapper for Node's fs", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "npm run clean && npm run build:node", "build:node": "tsc", "clean": "rimraf dist", "format": "prettier --write \"{source,test}/**/*.{js,ts}\"", "prepack": "npm run build", "test": "npm run test:specs && npm run test:format", "test:format": "prettier --check \"{source,test}/**/*.{js,ts}\"", "test:specs": "npm run build && nyc mocha -r test/specs/index.js test/specs/**/*.js" }, "files": [ "dist/**/*" ], "repository": { "type": "git", "url": "git+https://github.com/perry-mitchell/webdav-fs.git" }, "engines": { "node": ">=14" }, "keywords": [ "webdav", "fs", "node", "remote", "readFile", "readdir", "stream" ], "author": "Perry Mitchell <perry@perrymitchell.net>", "license": "MIT", "bugs": { "url": "https://github.com/perry-mitchell/webdav-fs/issues" }, "homepage": "https://github.com/perry-mitchell/webdav-fs#readme", "dependencies": { "webdav": "^4.7.0" }, "devDependencies": { "@types/node": "^16.11.1", "buffer-equals": "^2.0.0", "chai": "^4.3.4", "copy-dir": "^1.3.0", "directory-exists": "^2.0.1", "exists-file": "^3.0.2", "mocha": "^9.1.3", "nyc": "^15.1.0", "prettier": "^2.4.1", "rimraf": "^3.0.2", "sinon": "^11.1.2", "typescript": "^4.4.4", "wait-on": "^6.0.0", "webdav-server": "^2.6.2" } }