-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1016 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 1016 Bytes
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
{
"name": "hapi_app",
"version": "1.0.0",
"description": "REST app with Hapi",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pnwlady/hapi_app.git"
},
"author": {
"name": "Heidi Laursen",
"email": "heidimlaursen@gmail.com"
},
"contributors": [
{
"name": "James Norton",
"email": "mrjamesnorton@gmail.com"
},
{
"name": "Kristopher Skelton",
"email": "kristopher@kmskelton.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/pnwlady/hapi_app/issues"
},
"homepage": "https://github.com/pnwlady/hapi_rest_app#readme",
"dependencies": {
"hapi": "^13.3.0",
"mongoose": "^4.4.13"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-http": "^2.0.1",
"gulp": "^3.9.1",
"gulp-eslint": "^2.0.0",
"gulp-mocha": "^2.2.0",
"mocha": "^2.4.5"
}
}