-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
69 lines (69 loc) · 1.5 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
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "generate-db-shop-urls",
"description": "Magically generate Deutsche Bahn ticket URLs.",
"version": "4.0.0",
"main": "index.js",
"files": [
"index.js",
"lib/*",
"example.js",
"LICENSE",
"LICENSE-PROSPERITY.md",
"LICENSE-APACHE"
],
"keywords": [
"db",
"deutsche bahn",
"bahn.de",
"tickets",
"shop",
"link"
],
"author": "Jannis R <mail@jannisr.de>",
"homepage": "https://github.com/derhuerst/generate-db-shop-urls",
"repository": "derhuerst/generate-db-shop-urls",
"bugs": "https://github.com/derhuerst/generate-db-shop-urls/issues",
"license": "(Apache-2.0 AND Prosperity-3.0.0)",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/derhuerst"
},
{
"type": "patreon",
"url": "https://patreon.com/derhuerst"
}
],
"engines": {
"node": ">=16"
},
"dependencies": {
"cheerio": "^1.0.0-rc.2",
"content-type": "^1.0.2",
"debug": "^4.0.0",
"fetch-ponyfill": "^7.1.0",
"iconv-lite": "^0.6.0",
"is-roughly-equal": "^0.1.0",
"luxon": "^3.1.1",
"moment-timezone": "^0.5.14",
"pinkie-promise": "^2.0.1",
"slugg": "^1.2.0",
"trim-newlines": "^3.0.1"
},
"peerDependencies": {
"db-hafas": "^5.0.0",
"eslint": "^8.11.0",
"hafas-client": "^5.0.0"
},
"devDependencies": {
"csv-parser": "^3.0.0",
"db-hafas": "^5.0.1",
"tape": "^5.0.0"
},
"scripts": {
"lint": "eslint .",
"build": "./build/index.sh",
"test": "env NODE_ENV=dev node test/index.js",
"prepublishOnly": "npm run lint && npm run build && npm test"
}
}