-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.5 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.5 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
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@here/olp-sdk-ts",
"version": "3.0.0",
"description": "HERE OLP SDK for TypeScript",
"author": {
"name": "HERE Europe B.V.",
"url": "https://here.com"
},
"license": "Apache-2.0",
"private": true,
"workspaces": [
"@here/*"
],
"nyc": {
"include": [
"@here/**/*.ts",
"@here/**/*.js"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text",
"html"
],
"sourceMap": true,
"instrument": true
},
"lint-staged": {
"*.ts": "prettier --write"
},
"scripts": {
"prepare": "husky",
"build": "npm run build -w @here/olp-sdk-fetch -w @here/olp-sdk-dataservice-api && npm run build -w @here/olp-sdk-core && npm run build -w @here/olp-sdk-authentication -w @here/olp-sdk-dataservice-read -w @here/olp-sdk-dataservice-write",
"test": "npm run test --workspaces --if-present",
"http-server-testing-bundles": "node scripts/static-server.js tests/integration/bundles/umd/static 8080",
"test-published-bundles": "vitest run --config ./vitest.bundles-published.config.ts",
"test-generated-bundles": "vitest run --config ./vitest.bundles-generated.config.ts",
"api-breaks-test": "tsc --noEmit -p tsconfig.json && vitest run --config ./vitest.api-breaks.config.ts",
"integration-test": "vitest run --config ./vitest.integration.config.ts",
"functional-test": "vitest run --config ./vitest.functional.config.ts",
"coverage": "npm run coverage --workspaces --if-present",
"lint": "eslint .",
"bundle": "npm run bundle --workspaces --if-present",
"bundle:dev": "npm run bundle:dev --workspaces --if-present",
"bundle:prod": "npm run bundle:prod --workspaces --if-present",
"typedoc": "typedoc --options typedoc.json"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^24.0.0",
"@vitest/coverage-v8": "^4.1.11",
"eslint": "^10.8.0",
"eslint-config-prettier": "^10.1.8",
"fetch-mock": "^12.6.0",
"husky": "^9.1.7",
"lint-staged": "^17.2.0",
"mockserver-client": "^7.4.0",
"mockserver-node": "^7.4.0",
"prettier": "^3.4.2",
"puppeteer": "^25.4.0",
"typedoc": "^0.28.20",
"typescript": "~5.8.3",
"typescript-eslint": "^8.65.0",
"vitest": "^4.1.11",
"webpack": "^5.109.1",
"webpack-cli": "^7.2.1"
},
"engines": {
"node": ">= 24.0.0"
},
"allowScripts": {
"bufferutil": true,
"es5-ext": true,
"fsevents": true,
"puppeteer": true,
"utf-8-validate": true
}
}