forked from openlayers/ol-mapbox-style
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.31 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
{
"name": "ol-mapbox-style",
"version": "6.1.1",
"description": "Create OpenLayers maps from Mapbox Style objects",
"main": "dist/index.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-dev-server --config ./webpack.config.examples.js",
"prepare": "npm run doc && npm run build",
"build": "tsc --project tsconfig-build.json && webpack-cli --mode=production --config ./webpack.config.olms.js && webpack-cli --mode=production --config ./webpack.config.examples.js",
"doc": "documentation readme -s API src/index.js src/stylefunction.js --document-exported true",
"karma": "karma start test/karma.conf.js",
"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.14.0",
"mapbox-to-css-font": "^2.4.0",
"webfont-matcher": "^1.1.0"
},
"peerDependencies": {
"ol": "^6.1.0"
},
"devDependencies": {
"@types/arcgis-rest-api": "^10.4.4",
"@types/geojson": "^7946.0.7",
"@types/node": "^12.12.19",
"@types/topojson-specification": "^1.0.1",
"babel-loader": "^8.0.6",
"buble": "^0.19.8",
"buble-loader": "^0.5.1",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^3.4.0",
"deep-freeze": "0.0.1",
"documentation": "^12.1.4",
"eslint": "^5.16.0",
"eslint-config-openlayers": "^11.0.0",
"html-webpack-plugin": "^3.2.0",
"karma": "^4.4.1",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-mocha": "^1.3.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.5",
"mapbox-gl-styles": "^2.0.2",
"mini-css-extract-plugin": "^0.4.5",
"mocha": "^5.2.0",
"ol": "^6.3.2-dev.1588516261795",
"puppeteer": "^1.20.0",
"should": "^13.2.3",
"sinon": "^7.5.0",
"style-loader": "^0.23.1",
"typescript": "^3.8.3",
"webpack": "^4.41.3",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
}
}