-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.5 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.5 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
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "quarkhttp",
"version": "1.0.0",
"engines": {
"node": ">=10.0.0"
},
"files": [
"README.md",
"index.js",
"src/app.js",
"src/query-params.js",
"src/url-to-regex.js"
],
"description": "Minimalistic web framework with 0 dependencies",
"main": "./src/app.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage",
"premake-badge": "$(npm bin)/jest --coverage",
"make-badge": "$(npm bin)/coverage-badges",
"toc": "npx markdown-toc README.md",
"lint": "npx eslint ./src/**"
},
"jest": {
"coverageReporters": [
"text",
"lcov",
"json-summary",
"cobertura"
]
},
"keywords": [
"quarkhttp",
"framework",
"web",
"http",
"rest",
"restful",
"router",
"app",
"api"
],
"author": "Chris Noring (https://softchris.github.io)",
"contributors": [
{
"name": "chris noring",
"url": "https://softchris.github.io"
}
],
"repository": {
"type": "git",
"url": "https://github.com/softchris/mini-web.git"
},
"homepage": "https://github.com/softchris/mini-web",
"bugs": {
"url": "https://github.com/softchris/mini-web/issues"
},
"license": "MIT",
"dependencies": {},
"devDependencies": {
"jest": "^26.0.1",
"supertest": "^4.0.2",
"coverage-badges": "^1.0.4",
"eslint": "^7.0.0",
"eslint-plugin-jest": "^23.13.1",
"eslint-plugin-node": "^11.1.0",
"markdown-toc": "^1.2.0"
}
}