-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
76 lines (76 loc) · 2.43 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
71
72
73
74
75
76
{
"name": "map-gl-utils",
"version": "0.50.4",
"description": "Utility functions for Mapbox GL JS or Maplibre GL JS",
"main": "umd/index.min.js",
"module": "dist/index.esm.js",
"type": "module",
"types": "dist/types/index.d.ts",
"scripts": {
"test": "node node_modules/jest/bin/jest src",
"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",
"predocs": "sed 's/^```.s$/```/' README.md > _readme.md",
"docs-only": "documentation build -f html -o docs --config documentation.yml src/index.ts src/utilsGenerated.js --sort-order alpha ",
"docs": "node updateKeys; yarn run docs-only",
"docserve": "documentation serve --config documentation.yml --watch src/index.js src/utilsGenerated.js --sort-order=alpha "
},
"author": "Steve Bennett <me@stevebennett.me> (http://stevebennett.me)",
"license": "Apache-2.0",
"devDependencies": {
"@babel/cli": "~7.8.4",
"@babel/core": "7.18.0",
"@babel/plugin-proposal-class-properties": "7.16.0",
"@babel/plugin-transform-modules-commonjs": "7.18.2",
"@babel/preset-env": "7.14.2",
"@babel/preset-typescript": "^7.26.0",
"@mapbox/mapbox-gl-style-spec": "^14",
"@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",
"@rollup/plugin-typescript": "^12.1.2",
"@types/geojson": "^7946.0.15",
"@types/jest": "^29.5.14",
"documentation": "^14.0.3",
"flow-remove-types": "2.255.0",
"jest": "29.5",
"mapbox-gl": "^3.8.0",
"rollup": "2.45.1",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-ts": "^3.4.5",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3",
"utility-types": "^3.11.0"
},
"files": [
"dist/*",
"umd/*"
],
"keywords": [
"mapbox",
"mapbox-gl-js",
"utility",
"geojson",
"style",
"layers",
"maps"
],
"repository": {
"type": "git",
"url": "git+https://github.com/stevage/map-gl-utils.git"
},
"oldjest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"prettier": {
"trailingComma": "es5",
"singleQuote": true,
"arrowParens": "avoid",
"tabWidth": 4
}
}