-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.16 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.16 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": "weather-api.ts",
"version": "1.0.2",
"description": "weather-api.ts is a simple Node.js module that allows you to easily interact with the API of weatherapi.com.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"prepublish": "npm run build",
"build": "tsc",
"test": "jest",
"node-ts": "node src/test/test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nathan-html/weather-api.js.git"
},
"keywords": [
"nodejs",
"npm",
"weather-api",
"nodejs-modules",
"typescript"
],
"author": "Nathan Flacher <contact@nathan-flacher.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Nathan-html/weather-api.js/issues"
},
"homepage": "https://github.com/Nathan-html/weather-api.js#readme",
"devDependencies": {
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.4.0",
"@types/node-fetch": "^2.6.2",
"dotenv": "^16.0.3",
"jest": "^29.4.1",
"node-fetch": "^3.3.0",
"node-ts": "^5.1.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"cross-fetch": "^3.1.5"
}
}