forked from mapbox/shp-write
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
51 lines (51 loc) · 1.01 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
49
50
51
{
"name": "shp-write",
"version": "0.3.2",
"description": "write shapefiles from pure javascript",
"main": "index.js",
"scripts": {
"test": "mocha -R spec",
"prepublish": "npm run make",
"make": "browserify -s shpwrite ./ > shpwrite.js"
},
"repository": {
"type": "git",
"url": "git://github.com/mapbox/shp-write.git"
},
"files": [
"index.js",
"src",
"shpwrite.js"
],
"keywords": [
"shapefile",
"write",
"js"
],
"author": "Tom MacWright",
"contributors": [
{
"name": "Nick Baugh",
"email": "[email protected]"
}
],
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/mapbox/shp-write/issues"
},
"dependencies": {
"dbf": "0.1.4",
"jszip": "2.5.0"
},
"devDependencies": {
"browserify": "^13.0.0",
"cz-conventional-changelog": "^1.2.0",
"expect.js": "~0.3.1",
"mocha": "~2.4.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}