forked from hwbllmnn/shp-write
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.19 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.19 KB
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
52
53
54
55
56
57
58
{
"name": "@fielda/shp-write",
"version": "0.4.3",
"private": false,
"publishConfig": {
"access": "public"
},
"description": "write shapefiles from pure javascript",
"main": "index.js",
"scripts": {
"test": "mocha -R spec",
"prepublish": "npm run make",
"make": "browserify -s shpwrite ./ > shpwrite.js",
"make-test": "browserify indexTest.js --debug > shpwrite.js"
},
"repository": {
"type": "git",
"url": "git://github.com/fielda/shp-write.git"
},
"files": [
"index.js",
"src",
"shpwrite.js"
],
"keywords": [
"shapefile",
"write",
"js"
],
"author": "Tom MacWright",
"contributors": [
{
"name": "Nick Baugh",
"email": "niftylettuce@gmail.com"
}
],
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/mapbox/shp-write/issues"
},
"dependencies": {
"dbf": "0.1.4",
"file-saver": "2.0.5",
"jszip": "3.7.1"
},
"devDependencies": {
"browserify": "16.2.3",
"cz-conventional-changelog": "2.1.0",
"eslint": "5.9.0",
"expect.js": "0.3.1",
"mocha": "5.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}