forked from stevage/map-gl-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.04 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
{
"name": "mapbox-gl-utils",
"version": "0.28.1",
"description": "Utility functions for Mapbox-GL-JS",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"test10": "n use 10.0.0 node_modules/jest/bin/jest.js",
"update-keys": "node make",
"babel": "babel src -d dist",
"prepublish": "yarn run update-keys; yarn run babel",
"main": "dist/index.js"
},
"author": "Steve Bennett <me@stevebennett.me> (http://stevebennett.me)",
"license": "Apache-2.0",
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@mapbox/mapbox-gl-style-spec": "^13.10.2",
"jest": "^23.6.0"
},
"dependencies": {
"@mapbox/expression-jamsession": "^0.4.2",
"kebab-case": "^1.0.0"
},
"files": [
"dist/*"
],
"keywords": [
"mapbox",
"mapbox-gl-js",
"utility",
"geojson",
"style",
"layers",
"maps"
],
"repository": "github:stevage/mapbox-gl-utils",
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
}
}