-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
68 lines (68 loc) · 2.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
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
{
"name": "map-gl-utils",
"version": "0.44.2",
"description": "Utility functions for Mapbox GL JS or Maplibre GL JS",
"main": "umd/index.min.js",
"module": "dist/index.esm.js",
"type": "module",
"scripts": {
"pretest": "yarn run flow-remove-types -d noflow src",
"test": "jest noflow/",
"update-keys": "node updateKeys",
"babel": "babel src -d dist",
"rollup": "node_modules/rollup/dist/bin/rollup -c rollup.config.js",
"rollup-esm": "node_modules/rollup/dist/bin/rollup -c rollup-esm.config.js",
"prepublish": "yarn run update-keys; yarn run rollup; yarn run rollup-esm; yarn run docs-only",
"docs-only": "documentation build -f html -o docs --config documentation.yml --sort-order alpha src/index.js src/utilsGenerated.js",
"docs": "node updateKeys; yarn run docs-only",
"docserve": "documentation serve --config documentation.yml --watch --sort-order alpha src/index.js src/utilsGenerated.js"
},
"author": "Steve Bennett <[email protected]> (http://stevebennett.me)",
"license": "Apache-2.0",
"devDependencies": {
"@babel/cli": "^7.8.7",
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-transform-modules-commonjs": "^7.18.2",
"@babel/preset-env": "^7.14.2",
"@babel/preset-flow": "^7.13.13",
"@mapbox/mapbox-gl-style-spec": "^13.22",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"documentation": "^13.2.5",
"flow-bin": "^0.151.0",
"flow-remove-types": "^2.151.0",
"jest": "^25.1.0",
"mapbox-gl": "^2.5.1",
"rollup": "^2.45.1",
"rollup-plugin-flow": "probablyup/rollup-plugin-flow#breaking-update-flow-remove-types",
"rollup-plugin-terser": "^7.0.2"
},
"files": [
"dist/*",
"umd/*",
"noflow/*"
],
"keywords": [
"mapbox",
"mapbox-gl-js",
"utility",
"geojson",
"style",
"layers",
"maps"
],
"repository": "github:stevage/map-gl-utils",
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"prettier": {
"trailingComma": "es5",
"singleQuote": true,
"arrowParens": "avoid",
"tabWidth": 4
}
}