forked from calvinmetcalf/shapefile-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.14 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
{
"name": "shpjs",
"version": "3.3.1",
"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 | uglifyjs -mc > ./dist/shp.min.js"
},
"author": "Calvin Metcalf",
"license": "MIT",
"readmeFilename": "README.md",
"devDependencies": {
"browserify": "^11.0.0",
"chai": "^3.3.0",
"chai-as-promised": "^5.1.0",
"jshint": "^2.5.1",
"jszip": "^2.5.0",
"lie": "^3.0.1",
"lru-cache": "^2.7.0",
"mocha": "^2.3.3",
"parsedbf": "0.1.1",
"proj4": "^2.1.4",
"testling": "^1.6.1",
"uglify-js": "^2.4.24"
},
"dependencies": {
"jszip": "^2.4.0",
"lie": "^2.7.6",
"lru-cache": "^2.5.0",
"parsedbf": "0.0.1",
"proj4": "^2.1.0"
},
"browser": {
"./lib/binaryajax.js": "./lib/binaryajax-browser.js"
}
}