-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1004 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
36
37
38
39
40
41
{
"private": true,
"name": "scrape-klimaschutz-planer-reports",
"description": "Scrape greenhouse gas emission reports of German municipalities from klimaschutz-planer.de.",
"version": "1.0.0",
"type": "module",
"main": "index.js",
"files": [
"index.js",
"example.js"
],
"keywords": [
"greenhouse gas",
"climate",
"co2",
"thg"
],
"author": "Jannis R <mail@jannisr.de>",
"homepage": "https://github.com/derhuerst/scrape-klimaschutz-planer-reports",
"repository": "derhuerst/scrape-klimaschutz-planer-reports",
"bugs": "https://github.com/derhuerst/scrape-klimaschutz-planer-reports/issues",
"license": "ISC",
"engines": {
"node": ">=18"
},
"dependencies": {
"content-type": "^1.0.4",
"cross-fetch": "^3.1.5",
"p-throttle": "^5.0.0"
},
"devDependencies": {
"eslint": "^8.0.0",
"tap-min": "^2.0.0",
"tape": "^5.0.1"
},
"scripts": {
"lint": "eslint .",
"test": "env NODE_ENV=dev node test.js | tap-min",
"prepublishOnly": "npm run lint && npm test"
}
}