-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 956 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 956 Bytes
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
{
"name": "mapbox-to-css-font",
"version": "3.2.0",
"description": "Utility to convert Mapbox GL Style font names to CSS font definitions",
"type": "module",
"module": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/openlayers/mapbox-to-css-font.git"
},
"keywords": [
"mapbox",
"maplibre",
"font"
],
"author": "Andreas Hocevar",
"license": "BSD-2-Clause",
"scripts": {
"lint": "eslint *.js test",
"typecheck": "tsc --noEmit -p tsconfig.build.json",
"pretest": "npm run lint && npm run typecheck",
"test": "mocha test/index.test.js",
"prepare": "tsc --emitDeclarationOnly -p tsconfig.build.json"
},
"main": "index.js",
"devDependencies": {
"eslint": "^9.32.0",
"eslint-config-openlayers": "^20.0.0",
"karma-mocha": "^2.0.1",
"mocha": "^10.2.0",
"should": "^13.2.3",
"sinon": "^7.2.7",
"typescript": "^5.5.3"
}
}