feathersjs/feathers

View on GitHub
packages/client/package.json

Summary

Maintainability
Test Coverage
{
  "name": "@feathersjs/client",
  "description": "A module that consolidates Feathers client modules for REST (jQuery, Request, Superagent) and Websocket (Socket.io, Primus) connections",
  "version": "5.0.25",
  "repository": {
    "type": "git",
    "url": "https://github.com/feathersjs/feathers.git",
    "directory": "packages/client"
  },
  "license": "MIT",
  "funding": {
    "type": "github",
    "url": "https://github.com/sponsors/daffl"
  },
  "bugs": {
    "url": "https://github.com/feathersjs/feathers/issues"
  },
  "homepage": "https://github.com/feathersjs/client",
  "keywords": [
    "feathers",
    "feathers-plugin"
  ],
  "author": "Feathers contributors",
  "engines": {
    "node": ">= 12"
  },
  "main": "dist/feathers",
  "types": "dist/feathers",
  "files": [
    "CHANGELOG.md",
    "LICENSE",
    "README.md",
    "src/**",
    "dist/**",
    "*.d.ts",
    "*.js"
  ],
  "scripts": {
    "compile": "tsc",
    "version": "npm run build",
    "clean": "shx rm -rf dist/ && shx mkdir -p dist",
    "build": "npm run clean && npm run compile && npm run webpack",
    "mocha": "mocha --config ../../.mocharc.json --recursive test/**/*.test.ts",
    "test": "npm run build && npm run mocha",
    "webpack": "webpack --config webpack/feathers.js && webpack --config webpack/feathers.min.js && webpack --config webpack/core.js && webpack --config webpack/core.min.js"
  },
  "browserslist": [
    "last 2 versions",
    "IE 11"
  ],
  "dependencies": {
    "@feathersjs/authentication-client": "^5.0.25",
    "@feathersjs/errors": "^5.0.25",
    "@feathersjs/feathers": "^5.0.25",
    "@feathersjs/rest-client": "^5.0.25",
    "@feathersjs/socketio-client": "^5.0.25"
  },
  "devDependencies": {
    "@babel/core": "^7.24.5",
    "@babel/preset-env": "^7.24.5",
    "@feathersjs/express": "^5.0.25",
    "@feathersjs/memory": "^5.0.25",
    "@feathersjs/socketio": "^5.0.25",
    "@feathersjs/tests": "^5.0.25",
    "babel-loader": "^9.1.3",
    "mocha": "^10.4.0",
    "node-fetch": "^2.6.1",
    "shx": "^0.3.4",
    "socket.io-client": "^4.7.5",
    "superagent": "^9.0.2",
    "ts-loader": "^9.5.1",
    "typescript": "^5.4.5",
    "webpack": "^5.91.0",
    "webpack-cli": "^5.1.4",
    "webpack-merge": "^5.10.0"
  },
  "gitHead": "90caf635aec850550b9d37bea2762af959d9e8d5"
}