-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.65 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.65 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
{
"name": "@streamr/cdn-location",
"version": "103.2.0",
"description": "Library for getting own approximate location by querying CDN servers",
"repository": {
"type": "git",
"url": "git+https://github.com/streamr-dev/network.git",
"directory": "packages/cdn-location"
},
"exports": {
".": {
"default": {
"types": "./dist/src/exports.d.ts",
"import": "./dist/src/exports.js",
"require": "./dist/src/exports.cjs"
}
}
},
"files": [
"dist/src/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 '**/*.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/integration",
"test-integration": "jest test/integration",
"prepare-for-tsp-solver": "./data-generation/prepareForTSPSolver.sh",
"generate-data-from-tsp-solution": "./data-generation/generateDataFromTSPSolverResult.sh"
},
"dependencies": {
"@streamr/utils": "103.2.0",
"haversine": "^1.1.1"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^16.0.3",
"@types/haversine": "^1.1.8",
"rimraf": "^6.1.2",
"rollup": "^4.53.5",
"rollup-plugin-dts": "^6.3.0",
"tsx": "^4.21.0"
}
}