-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 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
41
42
43
44
45
46
{
"name": "weather-formulas",
"version": "1.0.3",
"description": "A collection of atmospheric, meteorological weather calculations",
"main": "temperature.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oyve/weather-formulas.git"
},
"keywords": [
"weather",
"atmospheric",
"calculations",
"calculation",
"temperature",
"dew point",
"wind chill",
"australian apparent temperature",
"heat index",
"humidex",
"relative humidity",
"specific humidity",
"mixing ratio",
"vapor pressure",
"potential temperature",
"virtual temperature",
"pressure altitude",
"density altitude",
"saturation vapor pressure"
],
"author": "github.com/oyve",
"license": "ISC",
"bugs": {
"url": "https://github.com/oyve/weather-formulas/issues"
},
"homepage": "https://github.com/oyve/weather-formulas#readme",
"devDependencies": {
"mocha": "^11.1.0"
}
}