forked from stac-utils/stac-node-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 964 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
44
45
{
"name": "stac-node-validator",
"version": "1.3.1",
"description": "STAC Validator for NodeJS",
"author": "Matthias Mohr",
"license": "Apache-2.0",
"keywords": [
"stac",
"validator"
],
"homepage": "https://github.com/stac-utils/stac-node-validator",
"bugs": {
"url": "https://github.com/stac-utils/stac-node-validator/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/stac-utils/stac-node-validator.git"
},
"main": "index.js",
"bin": {
"stac-node-validator": "./bin/cli.js"
},
"files": [
"bin/cli.js",
"iri.js",
"index.js"
],
"dependencies": {
"ajv": "^8.8.2",
"ajv-formats": "^2.1.1",
"axios": "^1.1.3",
"compare-versions": "^6.1.0",
"fs-extra": "^10.0.0",
"jest-diff": "^29.0.1",
"klaw": "^4.0.1",
"minimist": "^1.2.5",
"uri-js": "^4.4.1"
},
"devDependencies": {
"jest": "^29.0.1"
},
"scripts": {
"test": "jest"
}
}