-
Notifications
You must be signed in to change notification settings - Fork 2.2k
/
package.json
57 lines (57 loc) · 1.62 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
{
"name": "@mapbox/mapbox-gl-style-spec",
"version": "14.8.0",
"description": "a specification for mapbox gl styles",
"author": "Mapbox",
"license": "SEE LICENSE IN LICENSE.txt",
"repository": {
"type": "git",
"url": "[email protected]:mapbox/mapbox-gl-js.git"
},
"keywords": [
"mapbox",
"mapbox-gl",
"mapbox-gl-js"
],
"main": "./dist/index.cjs",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"type": "module",
"sideEffects": false,
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.es.js"
},
"./": {
"import": "./"
}
},
"scripts": {
"pretest": "npm run build",
"test": "node ./test.js",
"build": "npm run build-spec && npm run build-dts",
"build-dts": "dts-bundle-generator --no-banner --export-referenced-types=false -o ./dist/index.d.ts ./style-spec.ts",
"build-spec": "rollup -c && rollup -c --environment esm",
"prepublishOnly": "npm run build",
"postpublish": "rm dist/index.cjs dist/index.d.ts"
},
"bin": {
"gl-style-migrate": "./bin/gl-style-migrate.js",
"gl-style-validate": "./bin/gl-style-validate.js",
"gl-style-format": "./bin/gl-style-format.js",
"gl-style-composite": "./bin/gl-style-composite.js"
},
"dependencies": {
"@mapbox/jsonlint-lines-primitives": "~2.0.2",
"@mapbox/point-geometry": "^0.1.0",
"@mapbox/unitbezier": "^0.0.1",
"cheap-ruler": "^4.0.0",
"csscolorparser": "~1.0.2",
"json-stringify-pretty-compact": "^4.0.0",
"minimist": "^1.2.6",
"quickselect": "^3.0.0",
"rw": "^1.3.3",
"tinyqueue": "^3.0.0"
}
}