forked from calvinmetcalf/shapefile-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1015 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
{
"name": "shpjs",
"version": "3.5.0",
"description": "A binary shapefile loader, for javascript. Not many caveats",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git://github.com/calvinmetcalf/shapefile-js.git"
},
"scripts": {
"test": "mocha ./test/test.js",
"hint": "jshint ./lib/*.js",
"build-test": "browserify ./test/test.js > ./test/bundle.js",
"build": "browserify . -s shp > ./dist/shp.js",
"min": "browserify . -s shp | minify > ./dist/shp.min.js"
},
"author": "Calvin Metcalf",
"license": "MIT",
"readmeFilename": "README.md",
"devDependencies": {
"babel-minify": "^0.5.1",
"browserify": "^13.0.0",
"chai": "^3.3.0",
"chai-as-promised": "^5.1.0",
"mocha": "^7.1.2",
"testling": "^1.6.1"
},
"dependencies": {
"jszip": "^2.4.0",
"lie": "^3.0.1",
"lru-cache": "^2.7.0",
"parsedbf": "^1.0.0",
"proj4": "^2.1.4"
},
"browser": {
"./lib/binaryajax.js": "./lib/binaryajax-fetch.js"
}
}