UNPKG

route-trie

Version:

A minimal and powerful trie based url path router for Node.js.

49 lines (48 loc) 1.12 kB
{ "name": "route-trie", "description": "A minimal and powerful trie based url path router for Node.js.", "authors": [ "Yan Qing <admin@zensh.com>" ], "version": "3.0.0", "license": "MIT", "main": "build/index.js", "types": "build/index.d.ts", "scripts": { "build": "rm -rf build && tsc", "test": "tslint -p tsconfig.json -t stylish 'src/**/*.ts' 'test/**/*.ts' && tman -r ts-node/register 'test/**/*.ts'", "lint": "tslint -p tsconfig.json -t stylish 'src/**/*.ts' 'test/**/*.ts'" }, "repository": { "type": "git", "url": "git@github.com:zensh/route-trie.git" }, "engines": { "node": ">= 8" }, "homepage": "https://github.com/zensh/route-trie", "keywords": [ "trie", "router", "route", "routing", "url", "url-trie", "router-trie" ], "dependencies": {}, "devDependencies": { "@types/node": "^10.12.5", "tman": "^1.8.1", "ts-node": "^7.0.1", "tslint": "^5.11.0", "tslint-eslint-rules": "^5.4.0", "typescript": "^3.1.6" }, "files": [ "build", "LICENSE", "README.md", "CHANGELOG.md" ] }