-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
26 lines (26 loc) · 868 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
{
"name": "nearest-items",
"version": "1.0.0",
"description": "Finding the nearest items to a user. The main two factors in the search are: - **Text match**: the user types a word or phrase that they want to find, and the search returns items that match this. - **Location**: the user indicates their location (through geolocation or through typing in the location search box) and the search returns items near the user",
"main": "index.js",
"scripts": {
"test": "node ./node_modules/tape/bin/tape ./node_modules/tape/bin/tape ./tests/*/* ",
"start": "nodemon server.js"
},
"repository": {
"type": "git",
"url": ""
},
"author": "naazy",
"license": "ISC",
"bugs": {
"url": ""
},
"homepage": "",
"dependencies": {
"better-sqlite3": "^4.1.0",
"hapi": "^17.4.0",
"nodemon": "^1.17.3",
"tape": "^4.9.0"
}
}