-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.15 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
{
"name": "stac-js",
"version": "0.0.9",
"description": "JS drop-in classes with utilities for STAC",
"author": "Matthias Mohr",
"license": "Apache-2.0",
"keywords": [
"STAC"
],
"homepage": "https://github.com/m-mohr/stac-js",
"repository": {
"type": "git",
"url": "git+https://github.com/m-mohr/stac-js.git"
},
"bugs": {
"url": "https://github.com/m-mohr/stac-js/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/m-mohr"
},
"type": "module",
"main": "src/index.js",
"files": [
"src/"
],
"scripts": {
"docs": "npx documentation build src/** -f html --github -o docs --sort-order kind",
"docs_lint": "npx documentation lint src/**",
"lint": "eslint \"./src/**/*.js\" -c .eslintrc.json",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"check": "npm run docs_lint && npm run lint && npm test"
},
"devDependencies": {
"eslint": "^8.34.0",
"eslint-plugin-jsdoc": "^40.0.0",
"jest": "^29.0.0",
"jest-html-reporter": "^3.3.0"
},
"dependencies": {
"@radiantearth/stac-migrate": "^1.5.0",
"urijs": "^1.19.11"
}
}