-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.62 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.62 KB
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
{
"name": "stac-node-validator",
"version": "2.0.0-rc.3",
"description": "STAC Validator for NodeJS",
"author": "Matthias Mohr",
"license": "Apache-2.0",
"keywords": [
"stac",
"validator"
],
"engines": {
"node": ">=22.12.0"
},
"homepage": "https://github.com/moregeo-it/stac-node-validator",
"bugs": {
"url": "https://github.com/moregeo-it/stac-node-validator/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/moregeo-it/stac-node-validator.git"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/m-mohr"
},
"main": "src/index.js",
"bin": {
"stac-node-validator": "bin/cli.js"
},
"files": [
"bin/cli.js",
"src/",
"dist/*.js",
"dist/*.mjs"
],
"dependencies": {
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"axios": "^1.7.4",
"compare-versions": "^6.1.0",
"fs-extra": "^11.0.0",
"jest-diff": "^30.0.0",
"klaw": "^4.0.1",
"uri-js": "^4.4.1",
"yargs": "^18.0.0"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.23.0",
"@playwright/test": "^1.58.2",
"babel-loader": "^10.0.0",
"jest": "^30.0.1",
"oxlint": "^1.51.0",
"path-browserify": "^1.0.1",
"prettier": "^3.8.1",
"process": "^0.11.10",
"webpack": "^5.89.0",
"webpack-cli": "^6.0.1"
},
"optionalDependencies": {
"stac-js": "*"
},
"scripts": {
"test": "jest",
"test:website": "npx playwright test",
"lint": "oxlint --fix -c .oxlintrc.json ./src ./bin",
"format": "prettier --write .",
"build": "webpack --mode production"
}
}