-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.37 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
{
"name": "boatlaunch",
"version": "1.0.0",
"description": "This is a repository for the boatlaunch app Minimum Viable Product MVP. Boatlaunch is a company which provides information about slipways and marinas in the UK and Europe. There is currently a boatlaunch website at boatlaunch.co.uk, and there is an app which was built in 2012. Boat launch has an database of around 4000 slipways, each with varying degrees of information. The database (which is stored by firebase) is updated by the users. No authorisation is required to use the website or edit the database.",
"main": "server.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "./node_modules/.bin/tape ./tests/*.js",
"start": "node lib/server.js",
"coverage": "istanbul cover ./node_modules/.bin/tape ./tests/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HMS-FAC/BoatlaunchMVP.git"
},
"author": "@tormod17 @conorc1000 @katkelemen @hdrdavies",
"license": "MIT",
"bugs": {
"url": "https://github.com/HMS-FAC/BoatlaunchMVP/issues"
},
"homepage": "https://github.com/HMS-FAC/BoatlaunchMVP#readme",
"dependencies": {
"codecov.io": "^0.1.6",
"firebase": "^2.3.2",
"hapi": "^11.1.2",
"inert": "^3.2.0"
},
"devDependencies": {
"istanbul": "^0.4.1",
"jasmine": "^2.4.1",
"qunitjs": "^1.20.0",
"tape": "^4.2.2"
}
}