This repository has been archived by the owner on Mar 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 197
/
package.json
109 lines (109 loc) · 4.68 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "harp.gl",
"version": "1.0.0",
"description": "Core render components of harp.gl, an open-source 3D map rendering engine.",
"workspaces": [
"@here/*",
"www/",
"test/performance",
"test/rendering"
],
"devDependencies": {
"@ismarslomic/mermaid.cli": "^0.5.5",
"@microsoft/api-documenter": "^7.8.10",
"@microsoft/api-extractor": "^7.8.10",
"@strictsoftware/typedoc-plugin-monorepo": "^0.3.1",
"@types/chai": "^4.2.14",
"@types/express": "^4.17.6",
"@types/fs-extra": "^9.0.1",
"@types/glob": "^7.1.3",
"@types/semver": "^7.3.4",
"@types/stats.js": "^0.17.0",
"@types/three": "^0.129.0",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"chai": "^4.2.0",
"commander": "^5.1.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-config-standard-with-typescript": "^19.0.1",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-standard": "^5.0.0",
"express": "^4.17.1",
"fork-ts-checker-webpack-plugin": "^6.0.5",
"fs-extra": "^9.0.0",
"geckodriver": "^1.21.1",
"glob": "^7.1.4",
"karma": "^6.3.2",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-firefox-launcher": "^2.1.0",
"karma-mocha": "^2.0.1",
"karma-typescript": "^5.5.1",
"mkpath": "^1.0.0",
"mocha": "^8.2.1",
"mocha-webdriver-runner": "^0.6.2",
"node-fetch": "^2.6.1",
"nyc": "^15.0.1",
"prettier": "^2.2.1",
"semver": "^7.3.2",
"three": "^0.129.0",
"ts-mocha": "^8.0.0",
"typedoc": "^0.17.7",
"typescript": "^4.1.2",
"webpack": "^5.12.3",
"webpack-cli": "^4.3.1",
"webpack-dev-server": "^3.11.0"
},
"scripts": {
"pre-test": "yarn run code-pre-tests --forbid-only && yarn run prettier && yarn eslint",
"code-pre-tests": "ts-mocha --no-timeouts ./test/*.ts",
"test": "yarn karma-headless",
"test-debug": "karma start --browser ChromeDebug --no-single-run --auto-watch",
"performance-test-node": "ts-mocha ./test/performance/**/*.ts",
"cleanup": "./scripts/cleanup.sh",
"test-cov": "yarn karma-headless --coverage",
"start": "ts-node ./scripts/credentials.ts -- . && webpack serve --config @here/harp-examples/webpack.config.js",
"build": "npm run build-bundle && npm run build-examples",
"build-examples": "ts-node ./scripts/credentials.ts -- dist/examples && webpack --config @here/harp-examples/webpack.config.js",
"build-bundle": "cd @here/harp.gl && webpack",
"build-www": "cd www && yarn build",
"start-www": "cd www && yarn start",
"start-tests": "webpack serve --config ./webpack.tests.config.js",
"test-browser": "yarn karma-browser",
"build-tests": "webpack --config ./webpack.tests.config.js",
"run-rendering-tests": "./scripts/rendering-tests-reference-platform.sh",
"save-reference-rendering-tests": "npx ts-node @here/harp-test-utils/lib/rendering/RenderingTestResultCli.ts save-reference",
"approve-reference-rendering-tests": "npx ts-node @here/harp-test-utils/lib/rendering/RenderingTestResultCli.ts approve",
"typedoc": "ts-node ./scripts/setup-docs.ts && typedoc --disableOutputCheck --options typedoc.json",
"docs": "ts-node ./scripts/apidocs.ts",
"prettier": "prettier -l \"**/*.(ts|tsx|json)\"",
"prettier:fix": "prettier --write \"**/*.(ts|tsx|json)\"",
"eslint": "eslint --ext .ts ./@here test scripts",
"eslint:fix": "eslint --fix --ext .ts ./@here test scripts",
"postinstall": "yarn workspace @here/harp-datasource-protocol generate-json-schema",
"prepare-doc-deploy": "ts-node ./scripts/prepare_doc_deploy.ts",
"karma-headless": "karma start --browsers ChromeHeadless",
"karma-headless-firefox": "karma start --browsers FirefoxHeadless",
"karma-browser": "karma start --browsers Chrome --no-single-run"
},
"engines": {
"node": ">=10.5.0",
"npm": ">=6.14.15",
"yarn": ">=1.11.1"
},
"repository": {
"type": "git",
"url": "https://github.com/heremaps/harp.gl.git"
},
"private": true,
"author": {
"name": "HERE Europe B.V.",
"url": "https://here.com"
},
"license": "Apache-2.0"
}