-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.73 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@geolonia/geonicdb-cli",
"version": "0.18.1",
"description": "A CLI client for the GeonicDB",
"type": "module",
"bin": {
"geonic": "./dist/index.js"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "eslint src/ tests/",
"format": "prettier --write 'src/**/*.ts' 'tests/**/*.ts'",
"test": "vitest run",
"test:e2e": "npm run build && cucumber-js",
"test:e2e:only": "cucumber-js",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"prepare": "npm run build"
},
"files": [
"dist"
],
"engines": {
"node": ">=20.0.0"
},
"keywords": [
"geonicdb",
"fiware",
"orion",
"ngsi",
"ngsiv2",
"ngsi-ld",
"context-broker",
"cli"
],
"author": "Geolonia Inc. (https://geolonia.com)",
"homepage": "https://github.com/geolonia/geonicdb-cli#readme",
"repository": {
"type": "git",
"url": "https://github.com/geolonia/geonicdb-cli.git"
},
"bugs": {
"url": "https://github.com/geolonia/geonicdb-cli/issues"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^13.1.0",
"json5": "^2.2.3"
},
"overrides": {
"fast-xml-parser": ">=5.3.8"
},
"devDependencies": {
"@cucumber/cucumber": "^12.7.0",
"@eslint/js": "^9.19.0",
"@types/node": "^22.13.0",
"@vitest/coverage-v8": "^4.1.8",
"eslint": "^9.19.0",
"geonicdb": "github:geolonia/geonicdb#913ceecf31285ef2cf7d7a0c04370f869de0480b",
"mongodb": "^7.1.0",
"mongodb-memory-server": "^11.0.1",
"prettier": "^3.4.2",
"tsup": "^8.3.6",
"tsx": "^4.21.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0",
"vitest": "^4.1.8"
}
}