forked from flatgeobuf/flatgeobuf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.88 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
{
"name": "flatgeobuf",
"version": "3.7.2",
"description": "A performant binary encoding for geographic data",
"scripts": {
"build": "tsc -p config/tsconfig.mjs.json && tsc -p config/tsconfig.cjs.json && rollup -c config/rollup.config.js",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"test": "TS_NODE_PROJECT=config/tsconfig.test.json mocha -r ts-node/register -r esm -t 20000 src/**/*.spec.ts",
"typedoc": "typedoc --tsconfig config/tsconfig.typedoc.json"
},
"files": [
"lib/**/*",
"dist/**/*"
],
"main": "lib/cjs/flatgeobuf.js",
"types": "lib/cjs/flatgeobuf.d.ts",
"module": "lib/mjs/flatgeobuf.js",
"repository": {
"type": "git",
"url": "git+https://github.com/bjornharrtell/flatgeobuf.git"
},
"author": "",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/bjornharrtell/flatgeobuf/issues"
},
"homepage": "https://github.com/bjornharrtell/flatgeobuf#readme",
"dependencies": {
"flatbuffers": "1.12.0",
"slice-source": "0.4.1",
"stream-buffers": "3.0.2"
},
"peerDependencies": {
"ol": "^6.4.3"
},
"devDependencies": {
"@babel/core": "7.12.13",
"@babel/preset-env": "7.12.13",
"@rollup/plugin-babel": "5.2.3",
"@rollup/plugin-node-resolve": "11.1.1",
"@types/chai": "4.2.14",
"@types/flatbuffers": "1.10.0",
"@types/mocha": "8.2.0",
"@types/node": "14.14.25",
"@types/ol": "6.4.2",
"@types/stream-buffers": "3.0.3",
"@typescript-eslint/eslint-plugin": "4.15.0",
"@typescript-eslint/parser": "4.15.0",
"chai": "4.3.0",
"eslint": "7.19.0",
"esm": "3.2.25",
"jsts": "2.6.1",
"local-web-server": "4.2.1",
"mocha": "8.2.1",
"node-fetch": "2.6.1",
"ol": "6.5.0",
"rollup": "2.38.5",
"rollup-plugin-terser": "7.0.2",
"ts-node": "9.1.1",
"typedoc": "0.20.23",
"typescript": "4.1.3",
"web-streams-polyfill": "3.0.1"
}
}