-
Notifications
You must be signed in to change notification settings - Fork 234
/
package.json
40 lines (40 loc) · 998 Bytes
/
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
{
"name": "shpjs",
"version": "6.1.0",
"description": "Load shapefiles in pure JavaScript",
"main": "lib/index.js",
"exports": {
"import": "./lib/index.js",
"require": "./dist/shp.js"
},
"type": "module",
"repository": {
"type": "git",
"url": "git://github.com/calvinmetcalf/shapefile-js.git"
},
"scripts": {
"test": "mocha --require test/fixtures.js ./test/test.js",
"build": "rollup -c",
"test-browser": "SERVING=true node test/server.js"
},
"author": "Calvin Metcalf",
"license": "MIT",
"readmeFilename": "README.md",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"chai": "^5.1.0",
"chai-promised": "^1.0.2",
"eslint": "^8.24.0",
"express": "^4.17.2",
"mocha": "^8.2.0",
"morgan": "^1.10.0",
"rollup": "^4.13.0",
"semistandard": "^16.0.1"
},
"dependencies": {
"but-unzip": "^0.1.4",
"parsedbf": "^2.0.0",
"proj4": "^2.1.4"
}
}