forked from watergis/mapbox-gl-pitch-toggle-control
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.01 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
{
"name": "@watergis/mapbox-gl-pitch-toggle-control",
"version": "1.0.3",
"description": "Simple pitch on/off button in Mapbox GL JS style. ",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"css"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"build-webpack": "webpack --config webpack.js",
"start": "webpack-dev-server --open --hot --inline --config webpack.js"
},
"keywords": [
"mapbox",
"mapbox-gl-js",
"pitch"
],
"author": "Jin IGARASHI",
"license": "MIT",
"devDependencies": {
"@types/mapbox-gl": "^1.11.1",
"css-loader": "^3.6.0",
"es6-promise": "^4.2.8",
"jquery": "^3.5.1",
"path": "^0.12.7",
"style-loader": "^1.2.1",
"typescript": "^3.9.7",
"webpack": "^4.44.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"mapbox-gl": "^1.11.1"
}
}