-
Notifications
You must be signed in to change notification settings - Fork 188
/
package.json
49 lines (49 loc) · 1.06 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
{
"name": "@mapbox/shp-write",
"version": "0.4.3",
"description": "write shapefiles from pure javascript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "mocha -R spec",
"prepublish": "npm run make",
"make": "browserify -s shpwrite ./ > shpwrite.js",
"make-test": "browserify indexTest.js > shpwrite.js"
},
"repository": {
"type": "git",
"url": "git://github.com/mapbox/shp-write.git"
},
"files": [
"dist/index.js",
"dist/index.d.ts",
"src",
"shpwrite.js"
],
"keywords": [
"shapefile",
"write",
"js"
],
"author": "Tom MacWright",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/mapbox/shp-write/issues"
},
"dependencies": {
"dbf": "0.2.0",
"file-saver": "2.0.5",
"jszip": "^3.10.1"
},
"devDependencies": {
"browserify": "^17.0.0",
"cz-conventional-changelog": "^1.2.0",
"expect.js": "~0.3.1",
"mocha": "^10.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}