-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
104 lines (104 loc) · 2.78 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
{
"name": "@codetanzania/emis-incident-type",
"version": "1.5.1",
"description": "A representation of an entity which classify emergency(or disaster) from the most generalised(nature and family) to the most specific (main event and peril).",
"main": "index.js",
"scripts": {
"test": "grunt test",
"integration": "grunt integration",
"dev": "BASE_PATH=./examples node ./examples/app.js",
"format": "prettier --write \"{lib,test,.}/**/*.js\" --loglevel silent",
"changelog": "changelog"
},
"repository": {
"type": "git",
"url": "https://github.com/CodeTanzania/emis-incident-type.git"
},
"keywords": [
"codetanzania",
"lykmapipo",
"emis",
"emis-module",
"disaster",
"emergency",
"hazard",
"risk",
"loss",
"exposure",
"resilience",
"warning",
"assessment",
"drm",
"mitigation",
"preparedness",
"response",
"recovery",
"event",
"incident",
"nature",
"peril",
"family"
],
"contributors": [
{
"name": "lykmapipo",
"email": "[email protected]",
"url": "https://github.com/lykmapipo"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/CodeTanzania/emis-incident-type/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/CodeTanzania/emis-incident-type",
"sandbox": {
"url": "https://emis-incident-type.herokuapp.com",
"apiDoc": "https://codetanzania.github.io/emis-incident-type/",
"client_id": "",
"client_secret": "",
"urls": [
{
"resource": "IncidentType",
"schema": "https://emis-incident-type.herokuapp.com/v1/incidenttypes/schema",
"link": "https://emis-incident-type.herokuapp.com/v1/incidenttypes",
"scopes": ["incidenttype:*"],
"methods": ["get", "post", "put", "patch", "delete"]
}
]
},
"devDependencies": {
"@benmaruchu/faker": "^4.2.1",
"@codetanzania/majifix-common": "^0.12.4",
"@lykmapipo/mongoose-test-helpers": ">=0.7.4",
"chai": "^4.2.0",
"generate-changelog": "^1.7.1",
"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",
"jshint-stylish": "^2.2.1",
"mocha": "^6.1.4",
"mongoose": ">=5.4.19",
"prettier": "^1.17.1",
"supertest": "^4.0.2"
},
"peerDependencies": {
"mongoose": ">=5.5.11"
},
"dependencies": {
"@lykmapipo/env": ">=0.7.8",
"@lykmapipo/express-common": ">=0.17.3",
"@lykmapipo/include": ">=0.2.4",
"@lykmapipo/mongoose-common": ">=0.23.4",
"async": ">=3.0.1",
"lodash": ">=4.17.11",
"mongoose-rest-actions": ">=0.28.1",
"randomcolor": ">=0.5.4"
},
"engines": {
"node": ">=8.11.1",
"npm": ">=5.6.0"
}
}