-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.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": "simpleserver",
"version": "1.0.0",
"description": "A simple web server",
"main": "lib/start.js",
"scripts": {
"test": "./node_modules/lab/bin/lab ./test/*.test.js -m 0 -c -a code -r lcov -o lcov.info -r console -o stdout",
"start": "node lib/start.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SimonLab/simpleServer.git"
},
"keywords": [
"web",
"server"
],
"author": "SimonLab",
"license": "ISC",
"bugs": {
"url": "https://github.com/SimonLab/simpleServer/issues"
},
"homepage": "https://github.com/SimonLab/simpleServer#readme",
"dependencies": {
"hapi": "^11.1.0",
"hoek": "^3.0.1",
"keyword-highlighter": "^1.0.3",
"redis-connection": "^4.0.1"
},
"devDependencies": {
"code": "^2.0.1",
"lab": "^7.2.0"
}
}