-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.36 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.36 KB
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
{
"name": "hapi-project",
"version": "1.0.0",
"description": "Create a new name and identity or find the best place to flee when you're in need. With tailor-made options for spies, z-list celebrities, bad spouses, prisoners on the run and witnesses in need of protection.",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "PORT=8001 ./node_modules/tape/bin/tape tests/*.js",
"start": "node src/server-start.js",
"devStart": "nodemon src/server-start.js",
"coverage": "./node_modules/.bin/istanbul cover tests/*.js && istanbul report lcov && codecov",
"codecov": "source config.env && ./node_modules/.bin/codecov -t $CODECOV_TOKEN"
},
"repository": {
"type": "git",
"url": "git+https://github.com/a-la-node/hapi-project.git"
},
"author": "Tom Cleo Peter Ewelina",
"license": "ISC",
"bugs": {
"url": "https://github.com/a-la-node/hapi-project/issues"
},
"homepage": "https://github.com/a-la-node/hapi-project#readme",
"dependencies": {
"handlebars": "^4.0.6",
"hapi": "^15.2.0",
"inert": "^4.0.2",
"request": "^2.79.0",
"vision": "^4.1.0"
},
"devDependencies": {
"codeclimate-test-reporter": "^0.4.0",
"codecov": "^1.0.1",
"env2": "^2.1.1",
"istanbul": "^0.4.5",
"nodemon": "^1.11.0",
"tape": "^4.6.2"
},
"engines": {
"node": "6.9.1"
}
}