-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
107 lines (107 loc) · 3.42 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
{
"type": "module",
"dependencies": {
"@turf/boolean-intersects": "^7.1.0",
"@turf/difference": "^7.1.0",
"@turf/distance": "^6.5.0",
"@turf/helpers": "^6.5.0",
"@turf/intersect": "^6.5.0",
"@turf/meta": "^7.0.0-alpha.110",
"@turf/projection": "^7.0.0-alpha.2",
"@turf/truncate": "^6.5.0",
"@turf/union": "^7.0.0-alpha.113",
"adm-zip": "^0.5.9",
"better-sqlite3": "^8.0.1",
"chevrotain": "^10.4.2",
"csv-parse": "^5.3.3",
"czech-address": "^1.0.1",
"d3-delaunay": "^6.0.4",
"dotenv": "^16.3.1",
"feedparser": "^2.2.10",
"geojson": "^0.5.0",
"graphlib": "^2.1.8",
"graphology": "^0.25.4",
"graphology-color": "^0.1.0",
"iconv-lite": "^0.6.3",
"knex": "^2.4.2",
"lodash": "^4.17.21",
"mysql": "^2.18.1",
"node-fetch": "^3.3.0",
"parsedbf": "^1.1.1",
"pg": "^8.11.1",
"sax": "^1.2.4",
"shp-to-geojson": "^1.0.0",
"typescript": "^4.9.4"
},
"devDependencies": {
"@chevrotain/types": "^10.5.0",
"@jest/globals": "^29.5.0",
"@types/adm-zip": "^0.5.0",
"@types/better-sqlite3": "^7.6.3",
"@types/d3-delaunay": "^6.0.4",
"@types/feedparser": "^2.2.5",
"@types/lodash": "^4.14.196",
"@types/node": "^18.11.17",
"copyfiles": "^2.4.1",
"jest": "^29.5.0",
"npm-run-all": "^1.7.0",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"tsx": "^4.7.1"
},
"scripts": {
"sync-all": "tsx src/bin/sync-all.ts",
"address-points": "tsx src/bin/address-points.ts",
"regions": "tsx src/bin/regions.ts",
"cities": "tsx src/bin/cities.ts",
"polygons": "tsx src/bin/polygons.ts",
"schools": "tsx src/bin/schools.ts",
"streets": "tsx src/bin/streets.ts",
"diagrams": "tsx src/bin/generate-syntax-diagrams.ts",
"clear-all": "tsx src/bin/clear-all.ts",
"init-db": "tsx src/bin/init-db.ts",
"parse-ordinance": "tsx src/bin/parse-ordinance.ts",
"knex": "tsx src/bin/knex.ts",
"test": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js -c=jest-esm.config.mjs --no-cache",
"ordinance-to-csv-rules": "node src/smd-to-csv/ordinance-to-csv-rules.js",
"clean": "rimraf dist",
"copyfiles": "copyfiles -u 1 src/souradnice.csv dist",
"build": "npm-run-all clean -p copyfiles build:*",
"build:types": "tsc --declaration --emitDeclarationOnly --outDir dist -p tsconfig.declarations.json",
"build:js": "tsc --outDir dist",
"prepare": "npm run build"
},
"name": "text-to-map",
"description": "Text To Map usiluje o lepší, strojově zpracovatelné využití částí vyhlášek s výčtem ulic a dalších lokací. Jde o rozšiřitelnou sadu konceptů a nástrojů, které zajistí hladký převod výčtu ulic a jejich rozsahů v lidsky srozumitelném jazyce do strojově zpracovatelného, uchopitelného formátu.",
"version": "1.1.33",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"LICENSE",
"README.md"
],
"directories": {
"example": "examples",
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maral/text-to-map.git"
},
"keywords": [
"streets",
"catchment areas",
"schools",
"map",
"geodata",
"address points",
"polygons"
],
"author": "Marek Lisý",
"license": "MIT",
"bugs": {
"url": "https://github.com/maral/text-to-map/issues"
},
"homepage": "https://github.com/maral/text-to-map#readme"
}