-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
124 lines (124 loc) · 3.42 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
{
"name": "@codetanzania/majifix-service-request",
"version": "0.2.5",
"description": "A representation of an issue(or service request) reported by civilian(or customer).",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test grunt test",
"integration": "NODE_ENV=test grunt integration",
"dev": "BASE_PATH=./examples node ./examples/app.js",
"commit": "git-cz",
"commit:all": "git add -A && git-cz",
"changelog": "changelog",
"format": "prettier --write \"{lib,test,.}/**/*.js\" --loglevel silent"
},
"repository": {
"type": "git",
"url": "https://github.com/CodeTanzania/majifix-service-request.git"
},
"keywords": [
"majifix",
"majifix-module",
"codetanzania",
"open311",
"service request",
"issue",
"complain"
],
"contributors": [
{
"name": "lykmapipo",
"email": "[email protected]",
"url": "https://github.com/lykmapipo"
},
{
"name": "benMaruchu",
"email": "[email protected]",
"url": "https://github.com/BenMaruchu"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/CodeTanzania/majifix-service-request/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/CodeTanzania/majifix-service-request",
"sandbox": {
"url": "https://majifix-service-request.herokuapp.com/v1/servicerequests"
},
"devDependencies": {
"@benmaruchu/faker": "^4.2.1",
"@commitlint/cli": "^7.6.1",
"@commitlint/config-conventional": "^7.6.0",
"@commitlint/travis-cli": "^7.6.1",
"@lykmapipo/express-test-helpers": "^0.7.2",
"@lykmapipo/mongoose-test-helpers": "^0.7.4",
"chai": "^4.2.0",
"commitizen": "^3.1.1",
"cz-conventional-changelog": "^2.1.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",
"husky": "^2.3.0",
"jshint-stylish": "^2.2.1",
"lint-staged": "^8.1.7",
"mocha": "^6.1.4",
"mongoose": "^5.5.3",
"prettier": "^1.17.1",
"supertest": "^4.0.2"
},
"peerDependencies": {
"mongoose": ">=5.5.11"
},
"dependencies": {
"@codetanzania/majifix-common": ">=0.12.4",
"@codetanzania/majifix-jurisdiction": ">=1.5.5",
"@codetanzania/majifix-priority": ">=1.4.5",
"@codetanzania/majifix-service": ">=1.1.5",
"@codetanzania/majifix-service-group": ">=1.2.6",
"@codetanzania/majifix-status": ">=1.4.6",
"@lykmapipo/common": ">=0.18.0",
"@lykmapipo/env": ">=0.7.8",
"@lykmapipo/express-common": ">=0.17.3",
"@lykmapipo/mongoose-common": ">=0.23.4",
"@lykmapipo/postman": ">=0.8.0",
"async": ">=3.0.1",
"express": ">=4.17.1",
"lodash": ">=4.17.11",
"moment": ">=2.24.0",
"mongoose-geojson-schemas": ">=0.10.5",
"mongoose-locale-schema": ">=0.3.1",
"mongoose-rest-actions": ">=0.28.1",
"parse-ms": ">=2.1.0",
"pretty-ms": ">=5.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js}": [
"prettier --write",
"git add"
],
"*.{md,html}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}