forked from flatgeobuf/flatgeobuf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.47 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
{
"name": "flatgeobuf",
"version": "3.25.0",
"description": "A performant binary encoding for geographic data",
"scripts": {
"build": "tsc -p config/tsconfig.mjs.json && rollup -c config/rollup.config.js",
"lint": "eslint ./src/ts --ext .js,.jsx,.ts,.tsx",
"test": "TS_NODE_PROJECT=config/tsconfig.test.json node --loader ts-node/esm ./node_modules/mocha/lib/cli/cli.js -t 20000 src/**/*.spec.ts",
"typedoc": "typedoc --tsconfig config/tsconfig.typedoc.json",
"server": "ws",
"fmt": "prettier --write src/ts",
"fmt-check": "prettier --check src/ts"
},
"files": [
"lib/**/*",
"dist/**/*"
],
"types": "lib/mjs/flatgeobuf.d.ts",
"module": "lib/mjs/flatgeobuf.js",
"main": "lib/mjs/flatgeobuf.js",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/flatgeobuf/flatgeobuf.git"
},
"keywords": [
"spatial",
"geometry",
"feature",
"flatbuffers",
"serialization",
"binary",
"performance"
],
"author": "Björn Harrtell",
"contributors": [
"Pirmin Kalberer",
"Michael Kirk",
"Gabriel Roldan",
"Jared Erickson",
"Karsten Pihl",
"Xavier Fischer",
"Dustin Carlino",
"Peter Brodersen",
"Corey Farwell",
"Even Rouault",
"James Hughes",
"James Gill",
"Clemens Portele",
"Horace Williams"
],
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/flatgeobuf/flatgeobuf/issues"
},
"homepage": "https://github.com/flatgeobuf/flatgeobuf#readme",
"dependencies": {
"@repeaterjs/repeater": "3.0.4",
"flatbuffers": "23.3.3",
"slice-source": "0.4.1"
},
"peerDependencies": {
"ol": "^7"
},
"devDependencies": {
"@babel/core": "7.21.0",
"@babel/preset-env": "7.20.2",
"@rollup/plugin-babel": "6.0.3",
"@rollup/plugin-node-resolve": "15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@types/chai": "4.3.4",
"@types/geojson": "7946.0.10",
"@types/mocha": "10.0.1",
"@types/node": "18.14.6",
"@types/stream-buffers": "3.0.4",
"@typescript-eslint/eslint-plugin": "5.54.1",
"@typescript-eslint/parser": "5.54.1",
"chai": "4.3.7",
"eslint": "8.35.0",
"jsts": "2.9.3",
"local-web-server": "5.3.0",
"mocha": "10.2.0",
"node-fetch": "3.3.0",
"ol": "7.3.0",
"prettier": "2.8.4",
"rollup": "3.18.0",
"stream-buffers": "3.0.2",
"ts-node": "10.9.1",
"typedoc": "0.23.26",
"typescript": "4.9.5",
"web-streams-polyfill": "3.2.1"
}
}