-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.15 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
{
"name": "arcgis-pbf-parser",
"version": "0.0.4",
"description": "A library for parsing the arcgis pbf format into geojson",
"main": "dist/arcgis-pbf.cjs",
"module": "dist/arcgis-pbf.mjs",
"browser": "dist/arcgis-pbf.min.js",
"type": "module",
"exports": {
".": {
"require": "./dist/arcgis-pbf.cjs",
"import": "./dist/arcgis-pbf.mjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"test": "node test/test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/rowanwins/arcgis-pbf-parser"
},
"homepage": "https://github.com/rowanwins/arcgis-pbf-parser",
"author": "Rowan Winsemius",
"license": "Apache-2.0",
"eslintConfig": {
"extends": "mourner"
},
"dependencies": {
"pbf": "^3.2.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"eslint": "^7.26.0",
"eslint-config-mourner": "^3.0.0",
"esm": "^3.2.25",
"glob": "^10.0.0",
"load-json-file": "^7.0.1",
"rollup": "^2.48.0",
"rollup-plugin-terser": "^7.0.2",
"tape": "^5.6.3",
"write-json-file": "^5.0.0"
}
}