-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 970 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
42
43
{
"name": "msn-weather-api",
"version": "0.3.1",
"description": "Get weather forecast from MSN",
"homepage": "https://typeslint.com/msn-weather-api",
"main": "index.cjs",
"type": "commonjs",
"types": "types/index.d.ts",
"scripts": {
"lint": "eslint . --ext .js,.cjs",
"lint:fix": "eslint . --fix --ext .js,.cjs",
"test": "jest"
},
"keywords": [],
"author": "Typeslint",
"license": "ISC",
"dependencies": {
"xml2js": "0.6.x"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"eslint": "^8.57.1",
"jest": "^29.7.0"
},
"engines": {
"node": ">=18.20.2",
"npm": ">=10.5.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Typeslint/msn-weather-api"
},
"bugs": {
"url": "https://github.com/Typeslint/msn-weather-api/issues",
"email": "support@typeslint.com"
},
"maintainers": [
{
"name": "Muunatic",
"url": "https://github.com/Muunatic"
}
]
}