forked from msfidelis/micro-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 833 Bytes
/
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
{
"name": "micro-api",
"version": "1.0.0",
"description": "Personal boilerplate to bootstrap simple applications and microservices",
"main": "index.js",
"dependencies": {
"boom": "^7.2.0",
"hapi": "^17.3.1",
"hapi-router": "^4.0.0",
"joi": "^13.2.0",
"node-config": "0.0.2",
"raj-tools": "^1.0.3"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^5.1.1",
"nodemon": "^1.17.3"
},
"scripts": {
"unit-test": "mocha --recursive",
"dev": "nodemon index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/msfidelis/micro-api.git"
},
"keywords": [],
"author": "Matheus Fidelis",
"license": "MIT",
"bugs": {
"url": "https://github.com/msfidelis/micro-api/issues"
},
"homepage": "https://github.com/msfidelis/micro-api#readme"
}