-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
115 lines (115 loc) · 3.08 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
{
"name": "@codetanzania/emis-feature",
"version": "1.4.3",
"description": "A representation of geographical feature of interest(i.e mapped physical element with their attributes in landscape e.g. administrative boundaries, roads, buildings etc) both natural and man made used in emergency(or disaster) management(or event).",
"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-feature.git"
},
"keywords": [
"codetanzania",
"emis",
"emis-module",
"disaster",
"hazard",
"incident",
"emergency",
"risk",
"geojson",
"feature",
"point",
"linestring",
"polygon",
"multipolygon",
"boundary",
"road",
"house",
"plant",
"river",
"drainage"
],
"contributors": [
{
"name": "lykmapipo",
"email": "lallyelias87@gmail.com",
"url": "https://github.com/lykmapipo"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/CodeTanzania/emis-feature/issues",
"email": "lallyelias87@gmail.com"
},
"homepage": "https://github.com/CodeTanzania/emis-feature",
"sandbox": {
"url": "https://emis-feature.herokuapp.com",
"apiDoc": "https://codetanzania.github.io/emis-feature/",
"client_id": "",
"client_secret": "",
"urls": [
{
"resource": "Feature",
"schema": "https://emis-feature.herokuapp.com/v1/features/schema",
"link": "https://emis-feature.herokuapp.com/v1/features",
"scopes": [
"features:*"
],
"methods": [
"get",
"post",
"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/constants": ">=0.3.12",
"@lykmapipo/env": ">=0.9.2",
"@lykmapipo/express-common": ">=0.17.8",
"@lykmapipo/include": ">=0.2.5",
"@lykmapipo/mongoose-common": ">=0.25.6",
"async": ">=3.0.1",
"countries-list": ">=2.4.2",
"lodash": ">=4.17.11",
"mongoose-geojson-schemas": ">=0.10.7",
"mongoose-rest-actions": ">=0.28.5"
},
"engines": {
"node": ">=8.11.1",
"npm": ">=5.6.0"
}
}