forked from nearform/udaru
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
139 lines (139 loc) · 3.32 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "@nearform/udaru-hapi-plugin",
"version": "5.3.2",
"main": "index.js",
"description": "Hapi authentication plugin that allows using udaru for policy based authorization",
"author": "nearForm Ltd",
"license": "MIT",
"contributors": [
{
"name": "Jimmy Mintzer",
"url": "https://github.com/jimmymintzer"
},
{
"name": "Nicolas Herment",
"url": "https://github.com/nherment"
},
{
"name": "Damian Beresford",
"url": "https://github.com/dberesford"
},
{
"name": "Mark Ireland",
"url": "https://github.com/irelandm"
},
{
"name": "Ron Litzenberger",
"url": "https://github.com/litzenberger"
},
{
"name": "Cian Foley",
"url": "https://github.com/cianfoley-nearform"
},
{
"name": "Dara Hayes",
"url": "https://github.com/darahayes"
},
{
"name": "Andrew Cashmore",
"url": "https://github.com/andrewcashmore"
},
{
"name": "Dean McDonnell",
"url": "https://github.com/mcdonnelldean"
},
{
"name": "Paul Negrutiu",
"url": "https://github.com/floridemai"
},
{
"name": "Salman Mitha",
"url": "https://github.com/salmanm"
},
{
"name": "Michael O'Brien",
"url": "https://github.com/mobri3n"
},
{
"name": "Michele Capra",
"url": "https://github.com/piccoloaiutante"
},
{
"name": "Filippo De Santis",
"url": "https://github.com/p16"
},
{
"name": "Mihai Dima",
"url": "https://github.com/mihaidma"
},
{
"name": "Paolo Chiodi",
"url": "https://github.com/paolochiodi"
},
{
"name": "Brian Cameron",
"url": "https://github.com/bcameron"
},
{
"name": "Paolo Insogna",
"url": "https://github.com/ShogunPanda"
},
{
"name": "William Riley-Land",
"url": "https://github.com/ShogunPanda"
}
],
"homepage": "https://nearform.github.io/udaru",
"repository": {
"type": "git",
"url": "git+https://github.com/nearform/udaru.git"
},
"bugs": {
"url": "https://github.com/nearform/udaru/issues"
},
"engines": {
"node": ">=8.9.0"
},
"keywords": [
"access",
"authorization",
"iam",
"policies",
"pbac",
"roles",
"rbac",
"permissions",
"user management",
"acl",
"hapi"
],
"scripts": {
"audit": "npm i --package-lock-only && npm audit",
"coverage": "UDARU_SERVICE_logger_pino_level=silent lab -r html -o coverage/coverage.html",
"coveralls": "UDARU_SERVICE_logger_pino_level=silent lab -r lcov | COVERALLS_REPO_TOKEN='?' coveralls",
"depcheck": "depcheck",
"pg:init": "udaru-init && npm run pg:migrate",
"pg:init-test-db": "npm run pg:init && udaru-loadTestData",
"pg:migrate": "udaru-migrate --version=max",
"test": "npm run pg:init-test-db && UDARU_SERVICE_logger_pino_level=silent lab"
},
"dependencies": {
"@hapi/boom": "^8.0.1",
"@hapi/hoek": "^8.3.0",
"@hapi/joi": "^15.1.0",
"@nearform/udaru-core": "^5.2.5",
"lodash": "^4.17.11"
},
"devDependencies": {
"@hapi/code": "^6.0.0",
"@hapi/hapi": "^18.4.0",
"@hapi/lab": "^20.4.0",
"coveralls": "^3.0.2",
"depcheck": "^0.8.1",
"sinon": "^7.1.1",
"uuid": "^3.3.2"
},
"publishConfig": {
"access": "public"
}
}