-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.53 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
{
"name": "geosub",
"version": "1.1.0",
"description": "Tool for partial downloading of geospatial datasets",
"main": "index.js",
"scripts": {
"test": "npx yatag && mocha",
"codecov": "curl -s https://codecov.io/bash | bash",
"c8": "npx c8 node --experimental-specifier-resolution=node --no-warnings node_modules/mocha/lib/cli/cli.js",
"lcov": "npx c8 report --reporter=text-lcov > coverage/tests.lcov",
"lint": "npx eslint *.js",
"preversion": "npx yatag && npm run lint && npm run test",
"version": "git add package.json",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mmomtchev/geosub.git"
},
"bin": {
"geosub": "./cli.js"
},
"keywords": [
"aws",
"g2sub",
"g2subset",
"gdal",
"noaa",
"gfs",
"geospatial",
"gdal-async"
],
"author": "Momtchil Momtchev <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/mmomtchev/geosub/issues"
},
"homepage": "https://github.com/mmomtchev/geosub#readme",
"dependencies": {
"commander": "^12.0.0",
"gdal-async": "^3.8.1"
},
"devDependencies": {
"c8": "^10.0.0",
"chai": "^4.3.8",
"chai-as-promised": "^7.1.1",
"codecov": "^3.8.3",
"eslint": "^9.0.0",
"eslint-plugin-array-func": "^5.0.1",
"eslint-plugin-mocha": "^10.2.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"mocha": "^11.0.1",
"prettier": "^3.2.5",
"yatag": "^1.2.0"
},
"engines": {
"node": ">=16"
}
}