-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
51 lines (51 loc) · 1.47 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
{
"name": "maplibre-gl-indoorequal",
"version": "1.2.0",
"description": "Integrate indoor= into your maplibre-gl.js map.",
"keywords": [
"maplibre",
"maplibre-gl",
"indoor",
"indoorequal",
"indoor="
],
"repository": "https://github.com/indoorequal/maplibre-gl-indoorequal",
"author": "François de Metz",
"license": "BSD",
"sideEffects": false,
"main": "dist/maplibre-gl-indoorequal.cjs.js",
"module": "dist/maplibre-gl-indoorequal.esm.js",
"browser": "dist/maplibre-gl-indoorequal.umd.min.js",
"scripts": {
"dev": "rollup --config --watch",
"build": "rollup --config",
"test": "jest",
"doc": "documentation readme src/index.js --section=API",
"sprite": "spritezero ./sprite/indoorequal ./mapicons && spritezero --retina ./sprite/indoorequal@2x ./mapicons"
},
"jest": {
"testEnvironment": "jsdom"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/preset-env": "^7.24.4",
"@indoorequal/spritezero-cli": "^3.0.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"babel-jest": "^29.7.0",
"documentation": "^14.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rollup": "^4.14.0"
},
"dependencies": {
"array-equal": "^1.0.2",
"debounce": "^2.0.0"
},
"peerDependencies": {
"maplibre-gl": "^3.0.0 || ^4.0.0"
},
"packageManager": "[email protected]"
}