UNPKG

devour-client

Version:

A lightweight, framework agnostic, flexible JSON API client

69 lines (68 loc) 1.75 kB
{ "name": "devour-client", "version": "3.1.5", "description": "A lightweight, framework agnostic, flexible JSON API client", "main": "lib/", "scripts": { "prepublish": "npm run compile", "prepublish-windows": "npm run compile:windows", "publish": "git push origin && git push origin --tags", "release:patch": "npm version patch && npm publish", "release:minor": "npm version minor && npm publish", "release:major": "npm version major && npm publish", "compile": "rm -rf lib/ && babel -d lib/ src/", "compile:windows": "rd /s /q \"lib/\" && babel -d lib/ src/", "watch": "babel --watch -d lib/ src/", "autofix": "standard --fix", "test": "standard && mocha" }, "repository": { "type": "git", "url": "git+https://github.com/twg/devour.git" }, "keywords": [ "Devour", "JSON-API", "API", "API", "Client" ], "author": [ "Emerson Lackey", "Josh Zucker" ], "license": "ISC", "bugs": { "url": "https://github.com/twg/devour/issues" }, "babel": { "presets": [ "@babel/preset-env" ] }, "mocha": { "recursive": true, "require": "@babel/register" }, "homepage": "https://github.com/twg/devour#readme", "devDependencies": { "@babel/cli": "^7.4.4", "@babel/core": "^7.4.5", "@babel/preset-env": "^7.4.5", "@babel/preset-es2015": "^7.0.0-beta.53", "@babel/register": "^7.4.4", "expect.js": "^0.3.1", "istanbul": "1.0.0-alpha.2", "mocha": "^9.1.3", "sinon": "^1.17.4", "standard": "^16.0.4" }, "dependencies": { "axios": "^1.1.3", "es6-promise": ">=3.1.2 <5.0.0", "lodash": "^4.17.15", "minilog": "^3.0.0", "pluralize": "^1.2.1", "qs": "^6.1.0" } }