UNPKG

998 BJSONView Raw
1{
2 "name": "shpjs",
3 "version": "6.1.0",
4 "description": "Load shapefiles in pure JavaScript",
5 "main": "lib/index.js",
6 "exports": {
7 "import": "./lib/index.js",
8 "require": "./dist/shp.js"
9 },
10 "type": "module",
11 "repository": {
12 "type": "git",
13 "url": "git://github.com/calvinmetcalf/shapefile-js.git"
14 },
15 "scripts": {
16 "test": "mocha --require test/fixtures.js ./test/test.js",
17 "build": "rollup -c",
18 "test-browser": "SERVING=true node test/server.js"
19 },
20 "author": "Calvin Metcalf",
21 "license": "MIT",
22 "readmeFilename": "README.md",
23 "devDependencies": {
24 "@rollup/plugin-node-resolve": "^15.2.3",
25 "@rollup/plugin-terser": "^0.4.4",
26 "chai": "^5.1.0",
27 "chai-promised": "^1.0.2",
28 "eslint": "^8.24.0",
29 "express": "^4.17.2",
30 "mocha": "^8.2.0",
31 "morgan": "^1.10.0",
32 "rollup": "^4.13.0",
33 "semistandard": "^16.0.1"
34 },
35 "dependencies": {
36 "but-unzip": "^0.1.4",
37 "parsedbf": "^2.0.0",
38 "proj4": "^2.1.4"
39 }
40}