-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
47 lines (47 loc) · 1.2 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
37
38
39
40
41
42
43
44
45
46
47
{
"name": "amazonmonitor",
"version": "3.0.0",
"description": "A Discord bot that monitors Amazon items for price drops/restocks",
"main": "index.js",
"type": "module",
"scripts": {
"test": "jest --coverage tests/",
"compile": "tsc",
"start": "tsx index.ts",
"lint": "eslint index.ts commands/**/*.ts common/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SpikeHD/AmazonMonitor.git"
},
"author": "SpikeHD",
"license": "ISC",
"bugs": {
"url": "https://github.com/SpikeHD/AmazonMonitor/issues"
},
"homepage": "https://github.com/SpikeHD/AmazonMonitor#readme",
"dependencies": {
"chalk": "^5.3.0",
"cheerio": "1.0.0-rc.10",
"discord.js": "^14.15.2",
"puppeteer": "^22.8.0",
"@lem0-packages/puppeteer-page-proxy": "1.4.1",
"tsx": "^3.14.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"install": "^0.13.0",
"jest": "^29.7.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"jest": {
"testEnvironment": "node",
"coverageReporters": [
"text"
]
}
}