forked from openlayers/ol-mapbox-style
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 3.28 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
{
"name": "ol-mapbox-style",
"version": "10.3.4",
"description": "Create OpenLayers maps from Mapbox Style objects",
"type": "module",
"browser": "dist/index.js",
"main": "dist/olms.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/olms.js"
}
},
"repository": {
"type": "git",
"url": "git://github.com/openlayers/ol-mapbox-style.git"
},
"bugs": {
"url": "https://github.com/openlayers/ol-mapbox-style/issues"
},
"keywords": [
"openlayers",
"mapbox",
"vector tiles"
],
"license": "BSD-2-Clause",
"scripts": {
"start": "webpack serve --config ./webpack.config.examples.cjs",
"prepare": "npm run doc && npm run build",
"build": "tsc --project tsconfig-build.json && rollup -c && cross-env esm=true rollup -c && webpack-cli --mode=production --config ./webpack.config.examples.cjs",
"doc": "typedoc --plugin typedoc-plugin-markdown --plugin typedoc-plugin-missing-exports src/index.js --readme none --excludeExternals --preserveAnchorCasing --hideBreadcrumbs --disableSources --tsconfig tsconfig-typecheck.json && npx concat-md docs --hide-anchor-links=false | npx add-text-to-markdown README.md --section \"API\" --write",
"karma": "karma start test/karma.conf.cjs",
"lint": "eslint test examples src",
"typecheck": "tsc --project tsconfig-typecheck.json",
"pretest": "npm run lint && npm run typecheck",
"test": "npm run karma -- --single-run --log-level error"
},
"dependencies": {
"@mapbox/mapbox-gl-style-spec": "^13.23.1",
"mapbox-to-css-font": "^2.4.1"
},
"devDependencies": {
"@mapbox/flow-remove-types": "^2.0.0",
"@rollup/plugin-buble": "^1.0.1",
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@types/arcgis-rest-api": "^10.4.4",
"@types/mocha": "^10.0.0",
"@types/offscreencanvas": "^2019.6.4",
"@types/topojson-specification": "^1.0.1",
"add-text-to-markdown": "^2.0.0",
"babel-loader": "^9.1.0",
"buble": "^0.20.0",
"buble-loader": "^0.5.1",
"concat-md": "^0.5.0",
"copy-webpack-plugin": "^11.0.0",
"coverage-istanbul-loader": "^3.0.5",
"cross-env": "^7.0.3",
"css-loader": "^6.5.1",
"deep-freeze": "0.0.1",
"eslint": "^8.2.0",
"eslint-config-openlayers": "^17.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"html-webpack-plugin": "^5.5.0",
"karma": "^6.3.4",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-mocha": "^2.0.1",
"karma-sourcemap-loader": "^0.4.0",
"karma-webpack": "^5.0.0",
"mapbox-gl-styles": "^2.0.2",
"mini-css-extract-plugin": "^2.4.4",
"mocha": "^10.0.0",
"nanoassert": "^2.0.0",
"ol": "^7.2.3-dev.1672696068643",
"puppeteer": "^19.2.2",
"remove-flow-types-loader": "^1.1.0",
"rollup": "^2.70.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-unassert": "^0.6.0",
"should": "^13.2.3",
"sinon": "^15.0.1",
"style-loader": "^3.3.1",
"typedoc": "^0.23.10",
"typedoc-plugin-markdown": "^3.13.4",
"typedoc-plugin-missing-exports": "^1.0.0",
"typescript": "^4.6.0-beta",
"webpack": "^5.62.1",
"webpack-cli": "^5.0.0",
"webpack-dev-server": "^4.4.0"
}
}