-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.61 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.61 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
{
"name": "@streamr/geoip-location",
"version": "103.3.1",
"description": "Library for getting location information from IP addresses based on MaxMind GeoLite2 databases",
"repository": {
"type": "git",
"url": "git+https://github.com/streamr-dev/network.git",
"directory": "packages/geoip-location"
},
"main": "./dist/exports.cjs",
"module": "./dist/exports.js",
"types": "./dist/exports.d.ts",
"browser": {
"./dist/exports.js": false
},
"files": [
"dist/exports.*",
"!*.tsbuildinfo",
"README.md",
"LICENSE"
],
"license": "Apache-2.0",
"author": "Streamr Network AG <contact@streamr.network>",
"scripts": {
"prebuild": "npm run reset-self",
"build": "tsc -b",
"postbuild": "NODE_OPTIONS='--import tsx' rollup -c rollup.config.mts",
"check": "tsc -p tsconfig.jest.json",
"reset-self": "rimraf --glob 'dist/**/*.tsbuildinfo'",
"clean": "jest --clearCache --config '{}' || true; rm -rf dist *.tsbuildinfo node_modules/.cache || true",
"eslint": "eslint --cache --cache-location=node_modules/.cache/.eslintcache/ '*/**/*.{js,ts}'",
"test": "jest test/unit",
"test-unit": "jest test/unit"
},
"dependencies": {
"@streamr/utils": "103.3.1",
"eventemitter3": "^5.0.4",
"long-timeout": "^0.1.1",
"mmdb-lib": "^3.0.2",
"tar": "^7.5.2",
"uuid": "^11.1.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^16.0.3",
"@types/long-timeout": "^0.1.2",
"@types/tar": "^6.1.11",
"express": "^5.2.1",
"rimraf": "^6.1.3",
"rollup": "^4.60.1",
"rollup-plugin-dts": "^6.4.1",
"tsx": "^4.21.0"
}
}