forked from wavded/ogr2ogr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.03 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
{
"name": "ogr2ogr",
"version": "2.1.1",
"description": "ogr2ogr wrapper w/ multiple format support",
"keywords": [
"ogr2ogr",
"stream",
"proj4",
"gdal"
],
"author": "Marc Harter <wavded@gmail.com>",
"repository": {
"type": "git",
"url": "http://github.com/wavded/ogr2ogr.git"
},
"homepage": "http://github.com/wavded/ogr2ogr",
"scripts": {
"test": "nyc tape \"test/*-test.js\"",
"lint": "eslint --max-warnings 0 modules examples test *.js",
"fmt": "prettier --write \"**/*.{html,js,json,md}\"",
"fmt-check": "prettier --check \"**/*.{html,js,json,md}\""
},
"main": "./index.js",
"dependencies": {
"archiver": "^5.0.2",
"comma-separated-values": "^3.6.0",
"decompress-zip": "^0.3.3",
"findit": "^2.0.0",
"rimraf": "^3.0.2"
},
"devDependencies": {
"eslint": "^7.4.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.1.2",
"nyc": "^15.1.0",
"prettier": "^2.0.5",
"tape": "^5.0.1"
},
"engines": {
"node": ">=10"
}
}