-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.52 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
47
48
49
50
51
52
{
"name": "weather-plus",
"version": "1.0.3",
"description": "Weather Plus is a powerful wrapper around various Weather APIs that simplifies adding weather data to your application",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"repository": "[email protected]:TextureHQ/weather-plus.git",
"author": "Victor Quinn <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:esm": "tsc --project tsconfig.esm.json",
"build": "npm run build:cjs && npm run build:esm",
"dev": "tsc-watch --onSuccess 'node dist/index.js'",
"test": "jest",
"test:watch": "jest --watch",
"prebuild": "rimraf ./dist",
"coverage": "jest --coverage"
},
"files": [
"dist"
],
"dependencies": {
"@turf/boolean-point-in-polygon": "^7.1.0",
"@turf/turf": "^7.1.0",
"@types/geojson": "^7946.0.14",
"@types/turf": "^3.5.32",
"axios": "^1.6.8",
"debug": "^4.3.4",
"ngeohash": "^0.6.3",
"redis": "^4.6.13",
"topojson-client": "^3.1.0",
"us-atlas": "^3.0.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.12",
"@types/ngeohash": "^0.6.8",
"@types/node": "^20.12.12",
"@types/redis": "^4.0.11",
"@types/topojson-client": "^3.1.5",
"axios-mock-adapter": "^1.22.0",
"jest": "^29.7.0",
"rimraf": "^5.0.7",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"tsc-watch": "^6.2.0",
"typescript": "^5.4.5"
}
}