-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
35 lines (35 loc) · 915 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
{
"name": "thuisbezorgd-scraper",
"version": "2.4.0",
"description": "Scrape Thuisbezorgd.nl/Takeaway.com restaurant website and get all current orders",
"repository": {
"type": "git",
"url": "https://github.com/kozmoz/thuisbezorgd-scraper.git"
},
"main": "./src/thuisbezorgd-scraper",
"types": "./src/types/thuisbezorgd-order.d.ts",
"scripts": {
"lint": "jshint src/*.js",
"test": "jest",
"build": "npm run lint && npm run test"
},
"keywords": [
"Thuisbezorgd.nl",
"Takeaway.com"
],
"bin": {
"thuisbezorgd-scraper": "./bin/thuisbezorgd-scraper"
},
"author": "Rob Juurlink",
"email": "thuisbezorgd-scraper@juurlink.org",
"url": "https://github.com/kozmoz/thuisbezorgd-scraper",
"license": "CC0-1.0",
"dependencies": {
"cli": "1.0.1"
},
"devDependencies": {
"@jest/globals": "29.7.0",
"jshint": "2.13.6",
"jest": "29.7.0"
}
}