-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 914 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
35
36
37
38
39
40
{
"name": "searchengine",
"version": "1.0.0",
"description": "Implementation of a Small Search Engine",
"keywords": [
"search",
"engine",
"web",
"information",
"retrieval",
"yazd",
"university",
"undergraduate",
"course",
"bs",
"bachelor",
"science",
"computer",
"ce"
],
"main": "main.js",
"type": "module",
"scripts": {
"start": "node server/main.js"
},
"repository": {
"type": "git",
"url": "https://github.com/geraked/searchengine.git"
},
"homepage": "https://github.com/geraked/searchengine",
"author": "Rabist (Geraked)",
"license": "MIT",
"dependencies": {
"cheerio": "^1.0.0-rc.10",
"express": "^4.17.1",
"mongodb": "^4.1.1",
"xmldom": "^0.6.0",
"xpath": "0.0.32"
}
}