forked from mapbox/dbf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 719 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 719 Bytes
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
{
"name": "dbf",
"version": "0.1.4",
"description": "generate dbf files",
"main": "index.js",
"dependencies": {
"jdataview": "~2.5.0"
},
"files": [
"dbf.js",
"src",
"index.js",
"json2dbf.js"
],
"devDependencies": {
"tap": "~5.7.2",
"browserify": "~13.0.1"
},
"scripts": {
"test": "tap test/*.js",
"make": "browserify -s dbf ./ > dbf.js",
"prepublish": "npm run make"
},
"repository": {
"type": "git",
"url": "git://github.com/mapbox/dbf"
},
"keywords": [
"dbf",
"file",
"database",
"shapefile"
],
"author": "Tom MacWright",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/mapbox/dbf/issues"
}
}