UNPKG

audible-api

Version:

A Node.js API for searching the audible website

100 lines (99 loc) 3.11 kB
{ "name": "audible-api", "version": "1.0.1", "description": "A Node.js API for searching the audible website", "license": "MIT", "author": "Chris Sandvik <chris.sandvik@gmail.com>", "homepage": "https://github.com/book-tools/audible-api#readme", "repository": { "type": "git", "url": "git+https://github.com/book-tools/audible-api.git" }, "bugs": { "url": "https://github.com/book-tools/audible-api/issues" }, "type": "module", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", "files": [ "dist", "src" ], "scripts": { "prebuild": "rimraf dist", "build": "concurrently npm:build:*", "build:cjs": "cross-env BABEL_ENV=cjs babel src --root-mode upward --extensions .ts,.tsx -d dist/cjs --source-maps", "build:esm": "cross-env BABEL_ENV=esm babel src --root-mode upward --extensions .ts,.tsx -d dist/esm --source-maps", "build:types": "tsc --emitDeclarationOnly --declaration --declarationDir dist/types", "format": "prettier --write .", "format:package": "prettier-package-json --write", "lint": "concurrently npm:lint:*", "lint:src": "eslint src --ext .ts,.tsx", "lint:types": "tsc --noEmit", "prepare": "husky install", "start": "nodemon --watch src --exec npm run build -e ts,tsx", "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js" }, "types": "dist/types/index.d.ts", "typings": "dist/types/index.d.ts", "dependencies": { "cheerio": "^1.0.0-rc.10", "dirty-json": "^0.9.2", "node-fetch": "^3.1.0", "schema-dts": "^1.0.0" }, "devDependencies": { "@babel/cli": "^7.16.0", "@babel/core": "^7.15.0", "@babel/plugin-proposal-class-properties": "^7.16.0", "@babel/preset-env": "^7.15.0", "@babel/preset-typescript": "^7.16.0", "@trivago/prettier-plugin-sort-imports": "^3.1.1", "@types/jest": "^27.0.3", "@types/node": "^16.11.9", "@types/node-fetch": "^3.0.3", "@typescript-eslint/eslint-plugin": "^5.4.0", "@typescript-eslint/parser": "^5.4.0", "babel-jest": "^27.3.1", "concurrently": "^6.4.0", "cross-env": "^7.0.3", "eslint": "^7.32.0", "eslint-config-airbnb-base": "^14.2.1", "eslint-config-airbnb-typescript": "^16.0.0", "eslint-config-prettier": "^8.3.0", "eslint-plugin-import": "^2.24.2", "eslint-plugin-jest": "^24.4.0", "eslint-plugin-tsdoc": "^0.2.14", "husky": "^7.0.1", "jest": "^27.3.1", "lint-staged": "^11.1.2", "nodemon": "^2.0.15", "prettier": "^2.3.2", "prettier-package-json": "^2.6.0", "rimraf": "^3.0.2", "ts-jest": "^27.0.7", "typescript": "^4.5.2" }, "keywords": [ "audible", "audiobook", "book", "metadata", "search" ], "publishConfig": { "access": "public" }, "exports": { ".": { "require": "./dist/cjs/index.js", "default": "./dist/esm/index.js" } }, "lint-staged": { "src/**/*.js": "eslint --cache --fix", "*": "prettier --ignore-unknown --write", "package.json": "prettier-package-json --write" }, "source": "src/index.js" }