File: package.json

Recommend this page to a friend!
  Classes of Dom Hastings   JS Webdav Client   package.json   Download  
File: package.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: JS Webdav Client
Access files of a Webdav server
Author: By
Last change: Increased the size of the item buttons.
Add a `Tree` component to enable copy and move operations again. Fixes #111.
Combine path-related functions.
Ensure `HTTP` operations always return a response.
Minor changes to adhere to WebDAV spec.
Bump package version and dependencies
Refactor code - replacing nested events with direct calls.
Added path to top of list.
Fix MOVE operations on non-Apache hosts. Fixes #89.
Bump version and update README.
Fix test runner and build.
Add first pass at i18n (using i18next).
Adding functional test.
Replace webpack with esbuild.
Replace Babel with TypeScript.
Replace Karma with Jest.
Replace ESLint and Stylelint with Prettier.
Date: 5 months ago
Size: 2,057 bytes
 

Contents

Class file image Download
{ "name": "webdav-js", "version": "2.4.0", "description": "WebDAV functionality intended for use as a bookmarklet or to make a simple webserver an interactive WebDAV environment.", "repository": { "type": "git", "url": "git@github.com:dom111/webdav-js.git" }, "keywords": [ "webdav", "bookmarklet" ], "author": "Dom Hastings", "license": "MIT", "scripts": { "build": "npm run build:esbuild && npm run build:prettier:write && npm run build:examples", "build:esbuild": "node ./esbuild.js", "build:esbuild:watch": "node ./esbuild.js watch", "build:examples": "bash build/examples.sh", "build:examples:branch": "bash build/examples-branch.sh", "build:prettier:check": "prettier -c .", "build:prettier:write": "prettier -w .", "build:watch": "npm run build:esbuild:watch", "terser": "terser", "test": "npm run test:unit && npm run test:functional", "test:functional": "npm run test:functional:chrome && npm run test:functional:firefox", "test:functional:chrome": "jest -c jest.config.functional.chrome.ts", "test:functional:firefox": "jest -c jest.config.functional.firefox.ts", "test:unit": "jest -c jest.config.unit.ts", "watch": "npm run build:watch" }, "devDependencies": { "@types/basiclightbox": "^5.0.1", "@types/expect-puppeteer": "^4.4.7", "@types/jest": "^27.4.1", "@types/jest-environment-puppeteer": "^5.0.1", "@types/prismjs": "^1.26.0", "@types/puppeteer": "^5.4.6", "@xmldom/xmldom": "^0.8.2", "esbuild": "^0.14.38", "esbuild-plugin-copy": "^1.3.0", "esbuild-sass-plugin": "^2.2.6", "jest": "^27.5.1", "jest-puppeteer": "^6.1.0", "prettier": "^2.6.2", "terser": "^4.3", "ts-jest": "^27.1.4", "ts-node": "^10.7.0" }, "dependencies": { "@dom111/element": "^0.1.0", "@dom111/typed-event-emitter": "^0.1.0", "basiclightbox": "^5.0.2", "i18next": "^21.9.1", "i18next-browser-languagedetector": "^6.1.5", "melba-toast": "^3.0.0", "prismjs": "^1.17.1" } }