fractal-devour-client
Version:
A lightweight, framework agnostic, flexible JSON API client
68 lines (67 loc) • 1.72 kB
JSON
{
"name": "fractal-devour-client",
"version": "3.0.1",
"description": "A lightweight, framework agnostic, flexible JSON API client",
"main": "lib/",
"scripts": {
"prepublish": "npm run compile",
"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/",
"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": [
"es2015"
],
"plugins": [
"transform-object-rest-spread"
]
},
"homepage": "https://github.com/twg/devour#readme",
"peerDependencies": {
"axios": ">= 0.18.0"
},
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-core": "^6.7.7",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.8.0",
"expect.js": "^0.3.1",
"istanbul": "1.0.0-alpha.2",
"mocha": "^2.4.5",
"sinon": "^1.17.4",
"standard": "^7.0.1"
},
"dependencies": {
"es6-promise": "^3.1.2",
"lodash": "^4.11.2",
"minilog": "^3.0.0",
"pluralize": "^1.2.1",
"qs": "^6.1.0"
}
}