-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
84 lines (84 loc) · 1.77 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "mono-core",
"version": "1.0.0",
"description": "Framework to create monolithic REST API",
"main": "lib/",
"files": [
"lib",
"bin",
"utils.js"
],
"bin": {
"mono": "./bin/mono.js"
},
"nyc": {
"include": [
"lib/"
]
},
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"lint": "eslint lib/ bin/ test/",
"test": "npm run lint && npm run t",
"t": "nyc ava --verbose --serial ---fail-fast test/ && nyc report --reporter=html",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"preversion": "npm test",
"docs": "docsify serve ./docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mono-js/mono.git"
},
"contributors": [
{
"name": "Sebastien Chopin (@Atinux)"
},
{
"name": "Benjamin Canac (@benjamincanac)"
}
],
"license": "MIT",
"dependencies": {
"app-root-dir": "^1.0.2",
"chalk": "^2.4.1",
"clear-module": "^2.1.0",
"debug": "^3.1.0",
"express": "^4.16.3",
"express-validation": "^1.0.2",
"glob": "^7.1.2",
"glob-promise": "^3.4.0",
"helmet": "^3.12.0",
"imperium": "^2.0.1",
"joi": "^13.3.0",
"joi-to-json-schema": "^3.3.0",
"jsonwebtoken": "^8.2.1",
"lodash": "^4.17.10",
"mono-utils": "^1.0.0",
"morgan": "^1.9.0",
"nodemon": "^1.17.4",
"sywac": "^1.2.0",
"winston": "^2.4.2"
},
"devDependencies": {
"ava": "0.25.0",
"codecov": "3.0.2",
"docsify-cli": "4.2.1",
"eslint": "4.19.1",
"ip": "1.1.5",
"mono-test-utils": "1.2.3",
"nyc": "11.7.3",
"tmp": "0.0.33",
"winston-elasticsearch": "0.6.0"
},
"keywords": [
"mono",
"rest api",
"framework",
"monolithic",
"rest-api",
"acl",
"log"
]
}