-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 970 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
{
"name": "game-discount-checker",
"version": "1.0.0",
"description": "A simple tool that scrapes game stores websites to check if game prices lowered.",
"main": "app.js",
"scripts": {
"start": "node app.js",
"test": "jest",
"server": "http-server ./test/websites --brotli --port 3003"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ErykDarnowski/game-discount-checker.git"
},
"keywords": [
"cli",
"gaming",
"discounts",
"terminal-based",
"game-discount-info",
"game-discount-checker"
],
"author": "Eryk Darnowski",
"license": "MIT",
"bugs": {
"url": "https://github.com/ErykDarnowski/game-discount-checker/issues"
},
"homepage": "https://github.com/ErykDarnowski/game-discount-checker#readme",
"dependencies": {
"axios": "^1.2.2",
"puppeteer": "^19.4.1",
"table": "^6.8.0"
},
"devDependencies": {
"http-server": "^14.1.1",
"jest": "^29.3.1"
}
}