-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 932 Bytes
/
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
{
"name": "@radiantearth/stac-migrate",
"version": "2.0.0",
"description": "A library to update STAC files to the latest version.",
"main": "migrate.js",
"bin": {
"stac-migrate": "./bin/cli.js"
},
"bugs": {
"url": "https://github.com/stac-utils/stac-migrate/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/stac-utils/stac-migrate.git"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/m-mohr"
},
"author": "Radiant Earth Foundation <[email protected]>",
"contributors": [
{
"name": "Matthias Mohr"
}
],
"license": "Apache-2.0",
"dependencies": {
"compare-versions": "^3.6.0",
"multihashes": "^3.1.2",
"yargs": "^17.6.2"
},
"devDependencies": {
"jest": "^29.0.0",
"jest-html-reporter": "^3.3.0"
},
"files": [
"bin/cli.js",
"migrate.js"
],
"scripts": {
"test": " jest"
}
}