-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
95 lines (95 loc) · 2.66 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@sentinel-hub/sentinelhub-js",
"version": "1.0.0",
"main": "dist/sentinelHub.cjs",
"module": "dist/sentinelHub.js",
"browser": "dist/sentinelHub.umd.js",
"type": "module",
"peerDependencies": {
"@turf/area": "^6.0.1",
"@turf/helpers": "^6.1.4",
"@types/proj4": "^2.5.2",
"axios": "^0.21.1",
"fast-xml-parser": "^4.4.1",
"moment": "^2.24.0",
"polygon-clipping": "^0.14.3",
"proj4": "^2.9.0",
"query-string": "^6.4.2",
"terraformer-wkt-parser": "^1.2.1"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@storybook/html": "^5.3.3",
"@types/jest": "^25.1.3",
"@types/node-fetch": "^2.5.7",
"@types/service-worker-mock": "^2.0.4",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"axios-mock-adapter": "^1.18.1",
"babel-loader": "^8.0.6",
"concurrently": "^5.1.0",
"dotenv": "^8.2.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"jest-canvas-mock": "^2.3.1",
"jest-environment-jsdom": "^29.7.0",
"node-fetch": "^2.6.0",
"prettier": "^3.3.3",
"rollup": "^4.19.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.36.0",
"service-worker-mock": "^2.0.5",
"ts-jest": "29.2.3",
"typedoc": "^0.26.5",
"typescript": "5.5.4"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "TZ=Europe/Ljubljana jest",
"lint": "eslint --max-warnings 0 --ext .ts,js src/",
"prettier": "prettier --write \"{src,example,stories}/**/*.{ts,js}\"",
"storybook": "concurrently --kill-others \"rollup -c -w\" \"start-storybook -p 6006 --quiet\"",
"build-storybook": "build-storybook",
"build-doc": "typedoc --excludePrivate --excludeProtected --exclude '**/*__*' --out doc/ src/"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "ts-jest"
},
"moduleDirectories": [
"node_modules",
"<rootDir>"
],
"testRegex": "/__tests__/.*\\.(ts|tsx|js)$",
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/",
"fixtures[.].*[.]ts",
"testUtils[.].*[.]ts"
],
"testEnvironment": "jsdom"
},
"types": "dist/src/index.d.ts",
"files": [
"dist",
"dist/src/index.d.ts"
],
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.19.2"
}
}