-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 2.92 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "@rdmr-eu/rdf-geopackage",
"version": "2.0.0",
"description": "Generate RDF out of a GeoPackage (for further processing)",
"repository": "https://github.com/redmer/rdf-geopackage.git",
"main": "dist/rdf-geopackage.js",
"bin": {
"rdf-geopackage": "dist/cli.js"
},
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"build": "tsc -p ./tsconfig.json",
"watch": "tsc --watch -p ./tsconfig.json",
"prepare": "npm run build",
"run": "node dist/cli.js --help",
"postversion": "git push && git push --tags"
},
"files": [
"dist/**"
],
"types": "dist/rdf-geopackage.d.ts",
"type": "module",
"keywords": [
"geojson",
"geosparql",
"rdf",
"geopackage",
"linked-data"
],
"author": "Redmer Kronemeijer <[email protected]> (https://rdmr.eu/)",
"license": "MPL-2.0",
"prettier": {},
"eslintConfig": {
"env": {
"node": true
},
"extends": [
"eslint:recommend",
"plugin:@typescript-eslint/recommended"
],
"overrides": [],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {}
},
"devDependencies": {
"@rdfjs/types": "^1.1.0",
"@types/better-sqlite3": "^7.6.8",
"@types/geojson": "^7946.0.13",
"@types/jest": "^29.5.11",
"@types/json-stable-stringify": "^1.0.36",
"@types/n3": "^1.16.4",
"@types/node": "^20.10.5",
"@types/proj4": "^2.5.5",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"eslint-config-eslint": "^9.0.0",
"eslint-plugin-jest": "^27.6.0",
"geojson": "^0.5.0",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
},
"dependencies": {
"@ngageoint/geopackage": "^4.2.5",
"@turf/area": "^6.5.0",
"@turf/bbox": "^6.5.0",
"@turf/bbox-polygon": "^6.5.0",
"@turf/centroid": "^6.5.0",
"@turf/length": "^6.5.0",
"better-sqlite3": "^9.4.3",
"json-stable-stringify": "^1.1.0",
"n3": "^1.17.2",
"node-fetch": "^3.3.2",
"proj4": "^2.9.2",
"rdf-data-factory": "^1.1.2",
"rdf-literal": "^1.3.1",
"reproject": "^1.2.7",
"supports-color": "^9.4.0",
"wkx": "^0.5.0",
"yargs": "^17.7.2"
},
"jest": {
"preset": "ts-jest/presets/default-esm",
"testEnvironment": "node",
"testMatch": [
"**/(*.)+test\\.ts"
],
"moduleDirectories": [
"node_modules",
"src"
],
"roots": [
"src"
],
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
},
"transformIgnorePatterns": [
"<rootDir>/node_modules/"
],
"extensionsToTreatAsEsm": [
".ts"
],
"setupFilesAfterEnv": [
"<rootDir>/tests/setup.js"
]
}
}