-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
70 lines (70 loc) · 1.99 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
{
"name": "mapbox-plugins",
"version": "0.3.2",
"description": "Customized Mapbox plugins, including game control, canvasOverlayer, scene animation",
"main": "dist/Mapbox.cjs.js",
"module": "dist/Mapbox.esm.js",
"browser": "dist/Mapbox.umd.js",
"dependencies": {
"@turf/center": "^3.10.3",
"@turf/destination": "^3.10.3",
"@turf/distance": "^3.10.3",
"@turf/hex-grid": "^3.10.3",
"mapbox-gl": "^0.49.0",
"pngjs": "^3.4.0",
"rbush": "^2.0.1"
},
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"babel-cli": "^6.18.0",
"babel-loader": "^8.0.2",
"esdoc": "^1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^4.7.2",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"friendly-errors-webpack-plugin": "^1.7.0",
"gulp": "^3.9.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.1.0",
"portfinder": "^1.0.20",
"rollup": "^1.19.4",
"rollup-plugin-commonjs": "^10.0.2",
"rollup-plugin-node-resolve": "^5.2.0",
"webpack": "^4.19.1",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.2.1",
"webpack-merge": "^4.2.1"
},
"scripts": {
"test": "jest --no-cache --notify",
"rbuild": "rollup -c",
"rdev": "rollup -c -w",
"build": "webpack --config webpack.config.js",
"dev": "webpack-dev-server --progress --config webpack.dev.conf.js",
"lint": "eslint --cache --ignore-path .gitignore src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alex2wong/mapbox-plugins.git"
},
"keywords": [
"mapbox",
"plugins",
"es6",
"webpack"
],
"author": "alex2wong",
"license": "BSD-2-Clause",
"engines": {
"node": ">= 12.4.0"
},
"bugs": {
"url": "https://github.com/alex2wong/mapbox-plugins/issues"
},
"homepage": "https://github.com/alex2wong/mapbox-plugins#readme"
}