UNPKG

express-routes-mapper

Version:
72 lines (71 loc) 1.88 kB
{ "name": "express-routes-mapper", "version": "1.1.0", "description": "a small mapper for express routes", "main": "lib/index.js", "scripts": { "pretest": "npm run lint && npm run babel", "test": "cross-env NODE_ENV=test nyc ava", "lint": "eslint ./src/index.js", "lintFix": "eslint ./src/index.js --fix", "coveralls": "nyc report --reporter=text-lcov | coveralls", "prepublish": "npm run babel", "build": "npm run babel", "precommit": "npm run lint", "prepush": "npm test", "babel": "babel src --out-dir lib" }, "keywords": [ "express", "routes", "mapper", "routing", "map" ], "repository": { "type": "git", "url": "git+https://github.com/aichbauer/express-routes-mapper.git" }, "bugs": { "url": "https://github.com/aichbauer/express-routes-mapper/issues" }, "homepage": "https://github.com/rudolfsonjunior/express-routes-mapper#readme", "author": "Lukas Aichbauer <l.aichbauer@gmail.com> (https://github.com/aichbauer/)", "license": "MIT", "dependencies": { "@babel/core": "^7.1.2", "@babel/register": "^7.0.0", "@babel/runtime": "^7.1.2", "express": "^4.16.3", "object.entries": "^1.0.4" }, "devDependencies": { "@babel/cli": "^7.1.2", "@babel/plugin-transform-runtime": "^7.0.0", "@babel/preset-env": "^7.1.0", "ava": "^0.18.2", "babel-plugin-add-module-exports": "^1.0.0", "babel-plugin-istanbul": "^5.0.1", "coveralls": "^2.12.0", "cross-env": "^5.2.0", "eslint": "^3.17.1", "eslint-config-airbnb-base": "^11.1.1", "eslint-plugin-import": "^2.2.0", "husky": "^0.13.2", "nyc": "^10.1.2" }, "ava": { "require": [ "@babel/register" ] }, "nyc": { "exclude": [ "test", "examples" ], "all": true, "sourceMap": false, "instrument": false } }