-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
34 lines (34 loc) · 918 Bytes
/
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
{
"name": "mapbox-to-css-font",
"version": "3.0.2",
"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",
"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"
},
"devDependencies": {
"eslint": "^5.15.0",
"eslint-config-openlayers": "^11.0.0",
"karma-mocha": "^2.0.1",
"mocha": "^10.2.0",
"should": "^13.2.3",
"sinon": "^7.2.7",
"typescript": "^5.5.3"
}
}