-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
58 lines (58 loc) · 1.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
{
"name": "@watergis/mapbox-gl-elevation",
"version": "1.0.5",
"description": "This module adds elevation control to mapbox-gl.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"css"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint lib/**/*.ts",
"lint:fix": "eslint --fix lib/**/*.ts",
"build": "tsc && webpack --mode production --config webpack.config.js",
"dev": "webpack serve --mode development --open --hot --inline --config webpack.config.js",
"deploy": "gh-pages -d example -m 'deploy to gh-pages'"
},
"keywords": [
"mapbox",
"mapbox-gl-js",
"elevation",
"terrain-rgb"
],
"repository": {
"type": "git",
"url": "git+https://github.com/watergis/mapbox-gl-elevation.git"
},
"author": "Jin IGARASHI",
"license": "MIT",
"bugs": {
"url": "https://github.com/watergis/mapbox-gl-elevation/issues"
},
"homepage": "https://github.com/watergis/mapbox-gl-elevation#readme",
"devDependencies": {
"@types/mapbox-gl": "^1.13.1",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"css-loader": "^5.0.1",
"es6-promise": "^4.2.8",
"eslint": "^7.22.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"gh-pages": "^3.2.0",
"path": "^0.12.7",
"style-loader": "^2.0.0",
"ts-loader": "^8.0.14",
"typescript": "^4.2.4",
"webpack": "^4.46.0",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"@turf/distance": "^6.2.0",
"@watergis/terrain-rgb": "^1.1.5",
"mapbox-gl": "^1.13.1"
}
}