This repository was archived by the owner on Apr 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.4 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.4 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
46
47
48
49
50
51
52
53
54
55
{
"name": "@draftbot/weather",
"version": "1.0.3",
"description": "Optimised module for obtaining weather information without ratelimits",
"main": "./lib/index.js",
"module": "./lib/index.js",
"typings": "./lib/index.d.ts",
"types": "./lib/index.d.ts",
"scripts": {
"lint": "eslint --ext .js --ignore-path .gitignore .",
"build": "tsc",
"test": "jest"
},
"lint-staged": {
"*.{js}": "eslint"
},
"keywords": [
"draftbot",
"weather",
"forecast"
],
"author": "DraftMan <contact@draftman.fr> (http://draftman.fr)",
"license": "MIT",
"dependencies": {
"fast-xml-parser": "^4.0.7",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@commitlint/cli": "16.2.4",
"@commitlint/config-conventional": "16.2.4",
"@types/jest": "^27.4.1",
"@types/node-fetch": "^2.5.12",
"@typescript-eslint/eslint-plugin": "5.21.0",
"@typescript-eslint/parser": "5.21.0",
"eslint": "8.14.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^7.0.4",
"jest": "28.0.3",
"lint-staged": "12.4.1",
"prettier": "^2.6.2",
"ts-jest": "^27.1.4",
"typescript": "4.6.4"
},
"repository": {
"type": "git",
"url": "https://github.com/DraftBot/weather.git"
},
"bugs": {
"url": "https://github.com/DraftBot/weather/issues"
},
"homepage": "https://github.com/DraftBot/weather#readme",
"publishConfig": {
"access": "public"
}
}