url-mapper
Version:
Two way `URL` <==> `route(params)` converter with mapper
55 lines • 1.43 kB
JSON
{
"name": "url-mapper",
"version": "2.0.0",
"description": "Two way `URL` <==> `route(params)` converter with mapper",
"main": "index.js",
"scripts": {
"pretest": "standard",
"test": "nodeunit tests",
"coverage": "istanbul cover nodeunit tests",
"postcoverage": "cat ./coverage/lcov.info | coveralls",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/cerebral/url-mapper.git"
},
"keywords": [
"url",
"map",
"parse"
],
"author": "Christian Alfoni <christianalfoni@gmail.com>",
"contributors": [
"Aleksey Guryanov <gurianov@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/cerebral/url-mapper/issues"
},
"homepage": "https://github.com/cerebral/url-mapper#readme",
"runkitExampleFilename": "example.js",
"devDependencies": {
"commitizen": "^2.5.0",
"coveralls": "^3.0.0",
"cz-customizable": "^2.7.0",
"ghooks": "^1.0.3",
"istanbul": "^0.4.0",
"nodeunit": "^0.11.2",
"semantic-release": "^4.3.5",
"standard": "^10.0.3",
"validate-commit-msg": "^2.3.1"
},
"dependencies": {
"urlon": "^3.0.1",
"path-to-regexp": "^2.1.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"ghooks": {
"commit-msg": "validate-commit-msg"
}
}
}