-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 925 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
{
"name": "research-paper-query",
"version": "1.0.0",
"description": "An app and a website to fetch and download research papers based on user demand. Research papers need to be IEEE and can be fetched from websites like Scihub.",
"main": "app.js",
"scripts": {
"start": "node app.js"
},
"author": "pseudorandom_guy",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"cheerio": "^1.0.0-rc.3",
"ejs": "^3.1.6",
"express": "^4.17.1",
"open": "^6.3.0",
"request": "^2.88.0"
},
"engines": {
"node": "11.9.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/subhrapaladhi/research-paper-query.git"
},
"keywords": [
"IEEE",
"research",
"papers"
],
"bugs": {
"url": "https://github.com/subhrapaladhi/research-paper-query/issues"
},
"homepage": "https://github.com/subhrapaladhi/research-paper-query#readme"
}