All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
54 lines
1.5 KiB
JSON
54 lines
1.5 KiB
JSON
{
|
|
"name": "@mapbox/mapbox-gl-style-spec",
|
|
"description": "a specification for mapbox gl styles",
|
|
"version": "13.28.0",
|
|
"author": "Mapbox",
|
|
"keywords": [
|
|
"mapbox",
|
|
"mapbox-gl",
|
|
"mapbox-gl-js"
|
|
],
|
|
"license": "ISC",
|
|
"main": "./dist/index.cjs",
|
|
"module": "./dist/index.es.js",
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"require": "./dist/index.cjs",
|
|
"import": "./dist/index.es.js"
|
|
},
|
|
"./": {
|
|
"import": "./"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"pretest": "npm run build",
|
|
"test": "node ./test.js",
|
|
"copy-flow-typed": "cp -R ../../flow-typed .",
|
|
"build": "../../node_modules/.bin/rollup -c && ../../node_modules/.bin/rollup -c --environment esm",
|
|
"prepublishOnly": "npm run copy-flow-typed && npm run build",
|
|
"postpublish": "rm -r flow-typed dist/index.cjs"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:mapbox/mapbox-gl-js.git"
|
|
},
|
|
"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.0",
|
|
"csscolorparser": "~1.0.2",
|
|
"json-stringify-pretty-compact": "^2.0.0",
|
|
"minimist": "^1.2.6",
|
|
"rw": "^1.3.3",
|
|
"sort-object": "^0.3.2"
|
|
},
|
|
"sideEffects": false
|
|
}
|