-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1 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
{
"name": "etsy-api-scraper",
"version": "0.0.1",
"description": "Tool to scrap Etsy API from web, then create typescript wrapper.",
"main": "./js/main.js",
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"cheerio-tableparser": "^1.0.1",
"lodash": "^4.17.4",
"request": "^2.88.2",
"request-promise": "^4.2.5"
},
"devDependencies": {
"@types/cheerio": "^0.22.18",
"@types/lodash": "^4.14.152",
"@types/request": "2.48.5",
"@types/request-promise": "^4.1.46",
"typescript": "^3.9.3"
},
"scripts": {
"start": "node js/main.js",
"build": "cd src && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Granga/etsy-api-scraper.git"
},
"keywords": [
"etsy",
"api",
"scrapper",
"typescript"
],
"author": "Risto Petroski <risto.petroski@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/Granga/etsy-api-scraper/issues"
},
"homepage": "https://github.com/Granga/etsy-api-scraper#readme"
}