-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
52 lines (52 loc) · 1.08 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
49
50
51
52
{
"name": "anumargak",
"version": "2.2.0",
"description": "Amazing fast multipurpose simple to use web/ HTTP router",
"main": "./src/letsRoute.js",
"scripts": {
"test": "jasmine tests/*test.js",
"coverage": "nyc jasmine tests/*test.js; nyc report --reporter=lcov ",
"updateContributors": "node static/contributors.js"
},
"author": "Amit Gupta (http://amitkumargupta.work)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/node-muneem/anumargak"
},
"keywords": [
"route",
"router",
"http",
"HTTP",
"fast",
"static",
"dynamic",
"enum",
"wildchar",
"async",
"await",
"named expressions",
"version"
],
"devDependencies": {
"benchmark": "^2.1.4",
"find-my-way": "^1.18.1",
"jasmine": "^3.3.1",
"jasmine-core": "^3.3.0",
"mock-req": "^0.2.0",
"mock-res": "^0.5.0",
"nyc": "^11.9.0"
},
"dependencies": {
"randexp": "^0.4.9",
"safe-regex": "^1.1.0",
"semver-store": "^0.3.0"
},
"nyc": {
"exclude": [
"tests",
"build"
]
}
}