-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
76 lines (76 loc) · 2.18 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
{
"name": "@here/harp-leaflet",
"version": "0.2.8",
"description": "Leaflet plugin for harp.gl maps",
"author": {
"name": "HERE Europe B.V.",
"url": "https://here.com"
},
"repository": {
"type": "git",
"url": "https://github.com/heremaps/harp-leaflet.git"
},
"main": "build/harp-leaflet.js",
"types": "build/src/index.d.ts",
"license": "Apache-2.0 AND MIT",
"scripts": {
"build": "rollup -c",
"build-examples": "webpack",
"watch": "rollup -c -w",
"start": "webpack-dev-server",
"build-tests": "webpack --config webpack.tests.config.js",
"start-tests": "webpack-dev-server --config webpack.tests.config.js",
"test": "karma start karma.conf.js",
"prettier": "prettier -l './**/*.ts' './**/*.js' './**/*.html'",
"prettier:fix": "prettier --write './**/*.ts' './**/*.js' './**/*.html'"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=9.11.1",
"npm": ">=5.8.0",
"yarn": ">=1.11.1"
},
"devDependencies": {
"@here/harp-geoutils": "^0.22.0",
"@here/harp-map-theme": "^0.22.0",
"@here/harp-mapview": "^0.22.0",
"@here/harp-omv-datasource": "^0.22.0",
"@here/harp-test-utils": "^0.22.0",
"@here/harp.gl": "^0.22.0",
"@types/chai": "^4.2.5",
"@types/leaflet": "^1.5.1",
"@types/mocha": "^7.0.2",
"@types/sinon": "^9.0.4",
"chai": "^4.2.0",
"copy-webpack-plugin": "^5.1.1",
"glob": "^7.1.4",
"karma": "^5.0.9",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-spec-reporter": "^0.0.32",
"leaflet": "^1.7.1",
"mocha": "^7.2.0",
"prettier": "^2.0.5",
"rollup": "^2.15.0",
"rollup-plugin-commonjs": "^10.0.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.27.1",
"sinon": "^9.0.2",
"three": "^0.124.0",
"ts-loader": "^7.0.5",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.3",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.9.0"
},
"peerDependencies": {
"@here/harp-geoutils": "^0.22.0",
"@here/harp-mapview": "^0.22.0",
"leaflet": "^1.7.1"
}
}