-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
56 lines (56 loc) · 1.43 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
50
51
52
53
54
55
56
{
"name": "wind-scrape",
"version": "4.1.5",
"description": "Scrape wind forecast from a few websites",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"private": true,
"files": [
"dist/**/*"
],
"scripts": {
"test": "jest",
"watch-test": "jest --watch",
"watch": "tsc -w",
"test-dev": "node tests/dev-sandbox.js",
"build": "rm -rf ./dist && tsc",
"build:prod": "npm run build && npm run package",
"package": "npm pack && node scripts/unpack.js",
"lint": "eslint ./src",
"lint:fix": "eslint --fix ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jeroentvb/wind-scrape.git"
},
"keywords": [
"package",
"scraper",
"wind",
"forecast"
],
"author": "jeroentvb",
"license": "ISC",
"bugs": {
"url": "https://github.com/jeroentvb/wind-scrape/issues"
},
"homepage": "https://github.com/jeroentvb/wind-scrape#readme",
"dependencies": {
"cheerio": "^1.0.0-rc.10",
"node-fetch": "^2.6.7",
"puppeteer": "^13.4.0"
},
"devDependencies": {
"@jeroentvb/eslint-config-typescript": "^1.3.0",
"@types/cheerio": "^0.22.31",
"@types/jest": "^27.5.0",
"@types/node": "^20.5.9",
"@types/node-fetch": "^2.5.10",
"@types/puppeteer": "^5.4.3",
"dotenv": "^16.0.1",
"eslint": "^8.15.0",
"jeroentvb-helper": "github:jeroentvb/jeroentvb-helper",
"jest": "^28.1.0",
"typescript": "^4.6.4"
}
}