-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.04 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.04 KB
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
{
"name": "trippe",
"version": "0.5.0",
"description": "Unofficial API client to check hotel prices and reward nights availability - suitable for an intercontinental lifestyle.",
"license": "GPLV3",
"author": "Raphael Cockx",
"type": "module",
"exports": "./index.js",
"engines": {
"node": ">=14.19 <15 || >=16.15 <17 || >=18"
},
"homepage": "https://github.com/raphaelcockx/trippe",
"repository": "raphaelcockx/trippe",
"bugs": "https://github.com/raphaelcockx/trippe/issues",
"scripts": {
"test": "ava",
"prepare": "husky install"
},
"files": [
"index.js"
],
"keywords": [
"hotels",
"api",
"travel",
"tourism",
"hospitality"
],
"devDependencies": {
"@eslint/js": "^9.39.1",
"@stylistic/eslint-plugin": "^5.6.1",
"ava": "^5.0.1",
"dotenv": "^16.0.3",
"eslint": "^9.39.1",
"globals": "^16.5.0",
"husky": "^8.0.0",
"ky": "^1.14.0",
"write": "^2.0.0"
},
"dependencies": {
"dayjs": "^1.11.6",
"got": "^12.5.2",
"read-pkg": "^7.1.0"
}
}