This repository has been archived by the owner on Sep 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
59 lines (59 loc) · 1.48 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
{
"name": "sample-hapi-rest-api",
"version": "0.0.0",
"description": "A sample structure for building a REST API on top of hapi.js framework",
"main": "index.js",
"scripts": {
"start": "grunt",
"test": "make test-unit",
"coverage": "make test-cov"
},
"repository": {
"type": "git",
"url": "https://github.com/agendor/sample-hapi-rest-api.git"
},
"author": "Agendor <http://www.agendor.com.br>",
"license": "ISC",
"bugs": {
"url": "https://github.com/agendor/sample-hapi-rest-api/issues"
},
"homepage": "https://github.com/agendor/sample-hapi-rest-api",
"dependencies": {
"hapi": "~3.0.0",
"mysql": "~2.1.0",
"hapi-auth-basic": "~1.0.0",
"joi": "~2.8.0",
"hoek": "~1.5.1",
"underscore": "~1.6.0",
"db-migrate": "https://github.com/tuliomonteazul/node-db-migrate/tarball/master",
"q": "~1.0.1"
},
"devDependencies": {
"grunt": "^0.4.4",
"grunt-contrib-jshint": "^0.8.0",
"grunt-contrib-watch": "^0.5.3",
"grunt-nodemon": "^0.2.1",
"grunt-concurrent": "^0.4.3",
"grunt-node-inspector": "^0.1.3",
"mocha": "^1.17.1",
"should": "^3.1.3",
"supertest": "^0.9.0",
"grunt-mocha-test": "^0.9.4",
"shelljs": "^0.2.6",
"blanket": "^1.1.6",
"travis-cov": "^0.2.5",
"li": "^1.0.0",
"grunt-env": "~0.4.1"
},
"config": {
"blanket": {
"pattern": [
"src"
],
"data-cover-never": "node_modules"
},
"travis-cov": {
"threshold": 10
}
}
}