forked from korywka/mapbox-controls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.23 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
{
"name": "mapbox-gl-controls",
"version": "1.6.4",
"main": "./lib/index.js",
"description": "Controls for mapbox-gl",
"scripts": {
"lint": "eslint src",
"watch:js": "rollup --config --watch",
"watch:css": "postcss src/theme.scss --watch --output theme.css",
"build": "rollup --config && postcss src/theme.scss --output theme.css && cp ./theme.css ./docs",
"docs": "documentation readme src/** --section=API --markdown-toc=false"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@rollup/plugin-babel": "^5.0.0",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"documentation": "^13.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"mapbox-gl": "^1.10.1",
"postcss-cli": "^7.1.1",
"postcss-import": "^12.0.1",
"postcss-nested": "^4.2.1",
"rollup": "^2.10.4",
"rollup-plugin-svg-import": "^1.5.1"
},
"dependencies": {
"@turf/distance": "6.0.1"
},
"peerDependencies": {
"mapbox-gl": ">=1.0.0 <2.0.0"
},
"homepage": "https://bravecow.github.io/mapbox-gl-controls/",
"repository": "bravecow/mapbox-gl-controls",
"license": "MIT"
}