-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.24 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
{
"name": "nodecaf",
"version": "0.13.3",
"description": "Nodecaf is a light framework for developing RESTful Apps in a quick and convenient manner.",
"main": "lib/main.js",
"types": "./lib/main.d.ts",
"scripts": {
"test": "mocha -b --no-diff test/*.js",
"lint": "eslint lib/*.js",
"coverage": "nyc -r html -r text-summary mocha -b --no-diff --no-warnings test/*.js"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/GCSBOSS/nodecaf.git"
},
"keywords": [
"http",
"routing",
"logging",
"config",
"promises",
"async",
"await",
"error",
"light",
"framework",
"api",
"rest",
"nodejs",
"server"
],
"author": "Guilherme C. Souza",
"license": "MIT",
"files": [
"lib"
],
"bugs": {
"url": "https://gitlab.com/GCSBOSS/nodecaf/issues"
},
"homepage": "https://gitlab.com/GCSBOSS/nodecaf#README",
"dependencies": {
"confort": "^0.2.1",
"cookie-signature": "^1.1.0",
"golog": "^0.5.0",
"ws": "^8.7.0"
},
"devDependencies": {
"muhb": "^3.1.2",
"toml": "^3.0.0"
}
}