-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.25 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
48
49
{
"name": "amazon-orders-scraper",
"description": "Logs into amazon and collects data on your orders.",
"author": {
"email": "[email protected]",
"name": "Nicholas Libby",
"url": "https://xedecimal.net"
},
"bugs": {
"url": "https://github.com/Xedecimal/amazon-orders-scraper/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/Xedecimal/amazon-orders-scraper",
"repository": {
"type": "github",
"url": "https://github.com/Xedecimal/amazon-orders-scraper"
},
"version": "1.0.5",
"main": "src/index.ts",
"license": "MIT",
"keywords": [
"amazon",
"scraper",
"orders",
"delivery"
],
"dependencies": {
"chrono-node": "^2.4.2",
"puppeteer": "^19.4.1",
"yargs": "^17.6.2"
},
"devDependencies": {
"@types/node": "^18.11.17",
"@types/yargs": "^17.0.17",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^24.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"scripts": {
"start": "npx nodemon"
}
}