forked from maplibre/maplibre-style-spec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 3.21 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@maplibre/maplibre-gl-style-spec",
"description": "a specification for maplibre styles",
"version": "20.3.0",
"author": "MapLibre",
"keywords": [
"mapbox",
"mapbox-gl",
"mapbox-gl-js",
"maplibre",
"maplibre-gl",
"maplibre-gl-js"
],
"license": "ISC",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"type": "module",
"scripts": {
"build": "rollup --configPlugin @rollup/plugin-typescript -c rollup.config.ts && cp ./src/reference/v8.json ./dist/latest.json",
"generate-style-spec": "node --no-warnings --loader ts-node/esm build/generate-style-spec.ts",
"generate-typings": "node --no-warnings --loader ts-node/esm build/generate-typings.ts",
"generate-docs": "node ${WATCH+--watch} --no-warnings --loader ts-node/esm build/generate-docs.ts",
"mkdocs": "docker run --rm -it -p 8000:8000 -v ${PWD}:/docs squidfunk/mkdocs-material",
"mkdocs-build": "npm run generate-docs && docker run --rm -v ${PWD}:/docs squidfunk/mkdocs-material build --strict",
"test-build": "jest --selectProjects=build",
"test-integration": "jest --selectProjects=integration",
"test-unit": "jest --selectProjects=unit",
"jest": "jest",
"jest-ci": "jest --reporters=github-actions --reporters=summary",
"compile": "tsc",
"lint": "eslint --cache --ext .ts,.tsx --ignore-path .gitignore .",
"typecheck": "tsc --noEmit",
"prepare": "npm run generate-style-spec"
},
"repository": {
"type": "git",
"url": "[email protected]:maplibre/maplibre-gl-style-spec.git"
},
"bin": {
"gl-style-migrate": "dist/gl-style-migrate.mjs",
"gl-style-validate": "dist/gl-style-validate.mjs",
"gl-style-format": "dist/gl-style-format.mjs"
},
"files": [
"dist",
"src",
"bin"
],
"dependencies": {
"@mapbox/jsonlint-lines-primitives": "~2.0.2",
"@mapbox/unitbezier": "^0.0.1",
"json-stringify-pretty-compact": "^4.0.0",
"minimist": "^1.2.8",
"quickselect": "^2.0.0",
"rw": "^1.3.3",
"sort-object": "^3.0.3",
"tinyqueue": "^2.0.3"
},
"sideEffects": false,
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.7",
"@rollup/plugin-strip": "^3.0.4",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/eslint": "^8.56.6",
"@types/geojson": "^7946.0.14",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.9",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"dts-bundle-generator": "^9.5.1",
"eslint": "^8.57.0",
"eslint-config-mourner": "^3.0.0",
"eslint-plugin-html": "^8.1.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-jsdoc": "^48.5.0",
"eslint-plugin-react": "^7.34.3",
"glob": "^10.4.2",
"jest": "^29.7.0",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.7.0",
"rollup": "^4.18.0",
"rollup-plugin-preserve-shebang": "^1.0.1",
"semver": "^7.5.4",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"tslib": "^2.6.3",
"typescript": "^5.5.2"
}
}