-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
131 lines (131 loc) · 3.28 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
{
"name": "@codetanzania/emis-role",
"version": "1.5.2",
"description": "A representation on how a party(or stakeholder) acts or, in other words, what role party(or stakeholder) plays in event of emergency(or disaster).",
"main": "index.js",
"scripts": {
"test": "grunt test",
"integration:test": "grunt integration",
"http:test": "grunt http",
"unit:test": "grunt unit",
"doc": "grunt doc",
"dev": "npm run seed && npm run start",
"start": "BASE_PATH=./examples node ./examples/app.js",
"seed": "BASE_PATH=./examples node ./examples/seed.js",
"format": "prettier --write \"{lib,test,.}/**/*.js\" --loglevel silent"
},
"repository": {
"type": "git",
"url": "https://github.com/CodeTanzania/emis-role.git"
},
"keywords": [
"codetanzania",
"lykmapipo",
"emis",
"emis-module",
"disaster",
"emergency",
"hazard",
"risk",
"loss",
"exposure",
"resilience",
"warning",
"assessment",
"drm",
"mitigation",
"preparedness",
"response",
"recovery",
"role",
"function",
"responsibility",
"duty",
"rights",
"control",
"rbac"
],
"contributors": [
{
"name": "lykmapipo",
"email": "lallyelias87@gmail.com",
"url": "https://github.com/lykmapipo"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/CodeTanzania/emis-role/issues",
"email": "lallyelias87@gmail.com"
},
"homepage": "https://github.com/CodeTanzania/emis-role",
"sandbox": {
"url": "https://emis-role.herokuapp.com",
"apidoc": "https://codetanzania.github.io/emis-role/",
"client_id": "",
"client_secret": "",
"urls": [
{
"resource": "Permission",
"schema": "https://emis-role.herokuapp.com/v1/permissions/schema",
"link": "https://emis-role.herokuapp.com/v1/permissions",
"scopes": [
"permission:*"
],
"methods": [
"get",
"put",
"patch"
]
},
{
"resource": "Role",
"schema": "https://emis-role.herokuapp.com/v1/roles/schema",
"link": "https://emis-role.herokuapp.com/v1/roles",
"scopes": [
"role:*"
],
"methods": [
"post",
"get",
"put",
"patch"
]
}
]
},
"devDependencies": {
"@benmaruchu/faker": "^4.2.1",
"@codetanzania/majifix-common": "^0.12.4",
"@lykmapipo/mongoose-test-helpers": ">=0.7.13",
"chai": "^4.2.0",
"grunt": "^1.0.4",
"grunt-apidoc": "^0.11.0",
"grunt-contrib-jshint": "^2.1.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-mocha-test": "^0.13.3",
"handlebars": "^4.1.2",
"jshint-stylish": "^2.2.1",
"mocha": "^6.1.4",
"mongoose": ">=5.6.0",
"prettier": "^1.18.2",
"supertest": "^4.0.2"
},
"peerDependencies": {
"mongoose": ">=5.6.0"
},
"dependencies": {
"@lykmapipo/common": ">=0.22.0",
"@lykmapipo/env": ">=0.9.2",
"@lykmapipo/express-common": ">=0.17.8",
"@lykmapipo/include": ">=0.2.5",
"@lykmapipo/mongoose-exportable": ">=0.3.5",
"@lykmapipo/permission": ">=0.8.4",
"async": ">=3.0.1",
"lodash": ">=4.17.11",
"mongoose-rest-actions": ">=0.28.5"
},
"engines": {
"node": ">=8.11.1",
"npm": ">=5.6.0"
}
}