mirror of
https://github.com/feathersjs/feathers.git
synced 2026-01-25 15:23:13 +00:00
80 lines
2.3 KiB
JSON
80 lines
2.3 KiB
JSON
{
|
|
"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.0-pre.26",
|
|
"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.0-pre.26",
|
|
"@feathersjs/errors": "^5.0.0-pre.26",
|
|
"@feathersjs/feathers": "^5.0.0-pre.26",
|
|
"@feathersjs/rest-client": "^5.0.0-pre.26",
|
|
"@feathersjs/socketio-client": "^5.0.0-pre.26"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.18.6",
|
|
"@babel/preset-env": "^7.18.6",
|
|
"@feathersjs/express": "^5.0.0-pre.26",
|
|
"@feathersjs/memory": "^5.0.0-pre.26",
|
|
"@feathersjs/socketio": "^5.0.0-pre.26",
|
|
"@feathersjs/tests": "^5.0.0-pre.26",
|
|
"babel-loader": "^8.2.5",
|
|
"mocha": "^10.0.0",
|
|
"mocha-puppeteer": "^0.14.0",
|
|
"node-fetch": "^2.6.1",
|
|
"shx": "^0.3.4",
|
|
"socket.io-client": "^4.5.1",
|
|
"superagent": "^8.0.0",
|
|
"ts-loader": "^9.3.1",
|
|
"typescript": "^4.7.4",
|
|
"webpack": "^5.73.0",
|
|
"webpack-cli": "^4.10.0",
|
|
"webpack-merge": "^5.8.0"
|
|
},
|
|
"gitHead": "0e7553ded9b24016d36021aaedcc2cdb19ab0157"
|
|
}
|