-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.31 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": "more4less",
"version": "1.6.9",
"description": "A price search engine for various german online shops",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"build:lib": "npx tsup",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"test": "mocha -r ts-node/register Tests/*.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/naseif/more4less.git"
},
"author": "naseif",
"license": "MIT",
"bugs": {
"url": "https://github.com/naseif/more4less/issues"
},
"keywords": [
"amazon-price-scraper",
"ebay-price-scraper",
"price-search-engine",
"price-scraper",
"ebay-price",
"amazon-price",
"search-price"
],
"homepage": "https://github.com/naseif/more4less#readme",
"devDependencies": {
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.8",
"mocha": "^9.2.0",
"prettier": "^2.5.1",
"ts-node": "^10.4.0",
"tslint": "^6.1.3",
"tsup": "^5.12.6",
"typedoc": "^0.22.11",
"typescript": "^4.5.4"
},
"dependencies": {
"cheerio": "^1.0.0-rc.10",
"csv-writer": "^1.6.0",
"node-fetch": "^2.6.6"
}
}