UNPKG

ebay-api

Version:

eBay API for Node and Browser

192 lines (191 loc) 4.86 kB
{ "name": "ebay-api", "author": "Daniil Tomilow", "version": "8.4.0", "description": "eBay API for Node and Browser", "type": "module", "main": "./lib/index.js", "types": "./lib/index.d.ts", "module": "./dist/eBayApi.js", "browser": "./lib/ebay-api.min.js", "browser:esm": "./dist/ebay-api.min.mjs", "exports": { ".": { "require": { "types": "./lib/index.d.ts", "default": "./lib/index.js" }, "import": { "types": "./dist/eBayApi.d.ts", "default": "./dist/eBayApi.js" } }, "./*": { "require": { "types": "./lib/*", "default": "./lib/*" }, "import": { "types": "./dist/*", "default": "./dist/*" } }, "./lib/*": { "require": { "types": "./lib/*", "default": "./lib/*" }, "import": { "types": "./dist/*", "default": "./dist/*" } }, "./lib/enums": { "require": { "types": "./lib/enums/index.d.ts", "default": "./lib/enums/index.js" }, "import": { "types": "./dist/enums/index.d.ts", "default": "./dist/enums/index.js" } }, "./lib/errors": { "require": { "types": "./lib/errors/index.d.ts", "default": "./lib/errors/index.js" }, "import": { "types": "./dist/errors/index.d.ts", "default": "./dist/errors/index.js" } }, "./lib/types": { "require": { "types": "./lib/types/index.d.ts", "default": "./lib/types/index.js" }, "import": { "types": "./dist/types/index.d.ts", "default": "./dist/types/index.js" } }, "./package.json": "./package.json" }, "scripts": { "cjs:fix": "node -e \"require('fs').writeFileSync('lib/package.json', JSON.stringify({type: 'commonjs'}, null, 2))\"", "build": "rimraf lib dist && tsc && tsc --project tsconfig.cjs.json && rollup -c --bundleConfigAsCjs && npm run cjs:fix", "prepare": "npm run build", "tslint": "tslint -c tslint.json '{src,test,examples}/**/*.ts'", "test": "mocha --reporter=dot", "report": "c8 npm run test", "report:summary": "c8 --reporter=lcov --reporter=text-summary npm run test", "prerelease": "npm run tslint && npm run test && npm run build", "release": "standard-version", "rc": "npm run release -- --prerelease RC && git push --follow-tags origin next" }, "dependencies": { "axios": "^1.2.1", "debug": "^4.3.4", "fast-xml-parser": "^4.0.12", "qs": "^6.11.0" }, "devDependencies": { "@rollup/plugin-commonjs": "^23.0.4", "@rollup/plugin-json": "^5.0.2", "@rollup/plugin-node-resolve": "^15.0.1", "@rollup/plugin-terser": "^0.2.0", "@rollup/plugin-virtual": "^3.0.1", "@types/chai": "^4.3.4", "@types/debug": "^4.1.7", "@types/mocha": "^10.0.1", "@types/node": "^18.11.10", "@types/qs": "^6.9.7", "@types/sinon": "^10.0.13", "c8": "^7.11.3", "chai": "^4.3.7", "form-data": "^4.0.0", "mocha": "^10.1.0", "readline": "^1.3.0", "rimraf": "^3.0.2", "rollup": "^3.7.0", "rollup-plugin-bundle-size": "^1.0.3", "sinon": "^7.4.2", "standard-version": "^9.0.0", "ts-node": "^10.8.0", "tslint": "^6.1.0", "typescript": "^4.9.3" }, "repository": { "type": "git", "url": "git+ssh://git@github.com/hendt/ebay-api.git" }, "keywords": [ "api", "eBay", "Shopping", "Searching", "products", "Browse", "Category", "FindingApi", "node-api", "eBay Traditional API", "eBay Full API", "eBay Account API", "eBay Inventory API", "eBay Compliance API", "eBay Marketing API", "eBay Fulfillment API", "eBay Marketing API", "eBay Analytics API", "eBay Metadata API", "eBay Browse API", "eBay Feed API", "eBay Order API", "eBay Marketplace Insights API", "eBay Taxonomy API", "eBay Catalog API", "eBay Translation API", "eBay Analytics API", "eBay Finding API", "eBay Shopping API", "eBay Merchandising API", "eBay Trading API", "eBay Product Services", "eBay Client Alerts API", "ebay-node", "eBay-node-api", "eBay-node-client", "eBay-typescript", "eBay-await", "eBay-async", "eBay-promises", "eBay-products", "eBay-sellers", "eBay-orders", "eBay-finances", "eBay-inventory", "eBay-shipment", "eBay-api", "eBay-sdk", "eBay-client", "eBay-node-api", "eBay-node" ], "license": "MIT", "bugs": { "url": "https://github.com/hendt/ebay-api/issues" }, "homepage": "https://github.com/hendt/ebay-api#readme", "directories": { "test": "test" }, "engines": { "node": ">= 14.0.0" }, "files": [ "lib", "dist" ] }