-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
91 lines (91 loc) · 2.1 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "verrazzano",
"version": "2.3.0",
"description": "Streaming geospatial format conversion",
"main": "dist/index.js",
"keywords": [
"gdal",
"format",
"to json",
"to geojson",
"from geojson",
"shp",
"kml",
"kmz",
"gpx",
"gdb",
"geospatial",
"geojson",
"stream",
"streaming"
],
"repository": {
"type": "git",
"url": "git+https://github.com/staeco/verrazzano.git"
},
"contributors": [
"Contra <[email protected]> (http://contra.io)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/staeco/verrazzano/issues"
},
"homepage": "https://github.com/staeco/verrazzano#readme",
"files": [
"dist"
],
"engines": {
"node": ">= 14"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-babel",
"include": [
"src/**/*.js"
],
"all": true,
"skip-full": true,
"check-coverage": false
},
"scripts": {
"preversion": "npm run clean && npm run build",
"build": "babel src --out-dir dist",
"clean": "rimraf dist",
"lint": "eslint src test --fix",
"test": "NODE_ENV=testing nyc mocha --require @babel/register --recursive --reporter spec --bail --timeout 60000"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/register": "^7.4.4",
"@istanbuljs/nyc-config-babel": "^3.0.0",
"@stae/babel-node": "^1.0.0",
"@stae/linters": "^1.0.0",
"babel-plugin-istanbul": "^6.0.0",
"body-parser": "^1.18.3",
"eslint": "^7.0.0",
"express": "^4.16.3",
"get-port": "^5.0.0",
"get-stream": "^6.0.0",
"graceful-fs": "^4.1.15",
"into-stream": "^6.0.0",
"mocha": "^10.0.0",
"nyc": "^15.0.0",
"rimraf": "^3.0.0",
"should": "^13.0.0"
},
"dependencies": {
"duplexify": "^4.0.0",
"findit2": "^2.2.3",
"from2": "^2.3.0",
"gdal-async": "^3.0.0",
"is-iso-date": "^0.0.1",
"jsonstream-next": "^3.0.0",
"kml-stream": "^2.0.0",
"lodash.mapvalues": "^4.6.0",
"lodash.pick": "^4.4.0",
"merge2": "^1.2.3",
"mkdirp": "^1.0.0",
"pumpify": "^2.0.0",
"tempfile": "^3.0.0",
"through2": "^4.0.0"
}
}