url-factory
Version:
Set a base url and encode params with minimum fuss. Especially useful with JSON API.
56 lines (55 loc) • 1.62 kB
JSON
{
"name": "url-factory",
"author": "George Bonner <georgebonnr@gmail.com> (http://georgebonnr.com)",
"files": [
"lib"
],
"version": "3.0.0",
"description": "Set a base url and encode params with minimum fuss. Especially useful with JSON API.",
"main": "lib/index.js",
"license": "MIT",
"devDependencies": {
"babel-preset-es2015": "^6.3.13",
"babel-preset-es2015-loose": "^7.0.0",
"babel-cli": "^6.4.5",
"babel-eslint": "^4.1.0",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-2": "^6.3.13",
"eslint": "^1.7.1",
"eslint-friendly-formatter": "1.2.2",
"eslint-config-patreon": "Patreon/eslint-config-patreon#6327c6f98fdce522800e5fcdf3b3de6cf9e1224f",
"eslint-plugin-react": "^3.6.3",
"rimraf": "^2.5.1"
},
"scripts": {
"build": "babel src --out-dir lib",
"lint": "eslint src test",
"clean": "rimraf lib dist coverage",
"preversion": "npm run lint && git push",
"version": "npm run clean && npm run build",
"postversion": "git push && git push --tags && npm run clean",
"prepublish": "npm run clean && npm run build",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/patreon/url-factory.git"
},
"keywords": [
"react",
"es2015",
"jsonapi",
"json-api",
"url",
"urlbuilder",
"url-builder"
],
"bugs": {
"url": "https://github.com/patreon/url-factory/issues"
},
"homepage": "https://github.com/patreon/url-factory#readme",
"dependencies": {
"is-plain-object": "^2.0.1"
}
}