This repository was archived by the owner on Oct 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.39 KB
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
53
54
55
56
57
58
{
"name": "muneem",
"version": "2.4.5",
"description": "Fast and simple web framework designed for all team members",
"main": "src/muneem.js",
"scripts": {
"test": "jasmine tests/*test.js",
"postinstall": "node tasks/postinstall.js",
"coverage": "nyc jasmine tests/*test.js; nyc report --reporter=lcov",
"iCoverage": "istanbul cover -x 'tests/*test.js' --dir './coverage' jasmine --captureExceptions tests/*test.js"
},
"author": "Amit Gupta (http://amitkumargupta.work)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/node-muneem/muneem.git"
},
"bugs": {
"url": "https://github.com/node-muneem/muneem/issues"
},
"homepage": "https://github.com/node-muneem/muneem",
"keywords": [
"REST",
"HTTP",
"HTTP2",
"HTTPS",
"web services",
"server",
"fast"
],
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.2.1",
"fastify": "^1.14.1",
"find-my-way": "^1.18.1",
"get-stream": "^3.0.0",
"h2url": "^0.1.2",
"istanbul": "^0.4.5",
"jasmine": "^2.99.0",
"jasmine-core": "^3.3.0",
"micro": "^9.3.3",
"mock-req": "^0.2.0",
"mock-res": "^0.5.0",
"nyc": "^13.3.0"
},
"dependencies": {
"anumargak": "^2.2.0",
"merge-descriptors": "^1.0.1",
"pump": "^3.0.0",
"yamljs": "^0.3.0"
},
"nyc": {
"exclude": [
"tests",
"build"
]
}
}