-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1.19 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
{
"name": "mapbox-gl-style-build",
"version": "0.6.0",
"description": "Build Mapbox GL styles by composing layers",
"source": "src/index.js",
"main": "dist/main.js",
"module": "dist/module.js",
"scripts": {
"watch": "parcel watch",
"build": "parcel build",
"test": "jest --watchAll",
"jest-watch": "jest --watch"
},
"author": "Stamen Design",
"license": "MIT",
"jest": {
"clearMocks": true,
"testEnvironment": "node",
"collectCoverage": false
},
"dependencies": {
"@mapbox/mapbox-gl-style-spec": "^13.28.0",
"chalk": "4.1.2",
"fast-glob": "^3.2.11",
"json-stringify-pretty-compact": "^3.0.0",
"lodash.clonedeep": "^4.5.0",
"lodash.isempty": "^4.4.0",
"lodash.isplainobject": "^4.0.6",
"mapbox-gl-style-format": "github:stamen/mapbox-gl-style-format#v0.3.0",
"yargs": "^17.2.1"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.16.11",
"@parcel/babel-preset-env": "^2.0.1",
"babel-jest": "^27.5.1",
"jest": "^27.3.1",
"parcel": "2.6.0"
},
"bin": {
"mapbox-gl-style-build": "bin/mapbox-gl-style-build",
"create-layer-templates": "bin/create-layer-templates"
}
}