-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.02 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
{
"name": "waqi-js-client",
"version": "1.2.0",
"description": "JS client library for the World Air Quality Index (WAQI) APIs. All available API modules are supported - City feed, Geolocalized feed, Search, and Map Queries.",
"main": "src/index.js",
"scripts": {
"test": "jest src/tests --detectOpenHandles"
},
"repository": {
"type": "git",
"url": "git+https://github.com/waqi-dev-community/waqi-js-client.git"
},
"keywords": [
"client",
"javascript",
"typescript",
"library",
"nodejs",
"npm",
"waqi",
"aqicn"
],
"author": "Niyi Omotoso",
"license": "MIT",
"bugs": {
"url": "https://github.com/waqi-dev-community/waqi-js-client/issues"
},
"homepage": "https://github.com/waqi-dev-community/waqi-js-client#readme",
"devDependencies": {
"@babel/core": "^7.22.17",
"@babel/preset-env": "^7.22.15",
"@jest/globals": "^29.6.4",
"babel-jest": "^29.6.4",
"jest": "^29.6.4"
},
"dependencies": {
"axios": "^1.5.0",
"node-fetch": "^3.3.2"
}
}