-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
48 lines (48 loc) · 1.1 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "route-trie",
"description": "A minimal and powerful trie based url path router for Node.js.",
"authors": [
"Yan Qing <[email protected]>"
],
"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": "[email protected]: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"
]
}