-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
72 lines (72 loc) · 1.71 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
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@openeo/js-client",
"version": "2.6.0",
"author": "openEO Consortium",
"contributors": [
{
"name": "Matthias Mohr"
},
{
"name": "Christoph Friedrich"
},
{
"name": "Joep Neijt"
}
],
"description": "JavaScript client for the openEO API.",
"license": "Apache-2.0",
"homepage": "http://openeo.org",
"bugs": {
"url": "https://github.com/Open-EO/openeo-js-client/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Open-EO/openeo-js-client.git"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/m-mohr"
},
"main": "src/openeo.js",
"types": "openeo.d.ts",
"files": [
"openeo.js",
"openeo.d.ts",
"openeo.min.js",
"src/*"
],
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.12.7",
"babel-loader": "^8.2.2",
"eslint": "^7.14.0",
"eslint-plugin-jsdoc": "^30.7.8",
"jest": "^27.4.4",
"jest-html-reporter": "^3.3.0",
"jsdoc": "^4.0.0",
"typescript": "^5.0.0",
"unminified-webpack-plugin": "^3.0.0",
"wait-for-expect": "^1.3.0",
"webpack": "^5.65.0",
"webpack-bundle-analyzer": "^4.0.0",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"@openeo/js-commons": "^1.5.0",
"@radiantearth/stac-migrate": "^1.0.0",
"axios": "^1.0.0",
"oidc-client": "^1.11.5"
},
"scripts": {
"docs": "jsdoc -r -d docs/ -P package.json -R README.md -c .jsdoc",
"build": "npm run lint && webpack",
"tsd": "tsc --project tsconfig.json",
"lint": "eslint src/",
"test": " jest --env=jsdom --runInBand",
"test_node": " jest --env=node --runInBand"
},
"browserslist": [
"> 1%",
"not ie > 0"
]
}