-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
35 lines (35 loc) · 860 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
35
{
"name": "micro-api",
"version": "1.0.0",
"description": "Personal boilerplate to bootstrap simple applications and microservices",
"main": "index.js",
"dependencies": {
"boom": "^7.2.0",
"config": "^1.30.0",
"hapi": "^17.3.1",
"hapi-router": "^4.0.0",
"joi": "^13.2.0",
"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",
"start": "node 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"
}