forked from openlayers/ol-mapbox-style
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
122 lines (122 loc) · 3.23 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "ol-mapbox-style",
"version": "2.11.2-5",
"description": "Create OpenLayers maps from Mapbox Style objects",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/boundlessgeo/ol-mapbox-style.git"
},
"bugs": {
"url": "https://github.com/boundlessgeo/ol-mapbox-style/issues"
},
"keywords": [
"openlayers",
"mapbox",
"vector tiles"
],
"author": "Andreas Hocevar <[email protected]>",
"contributors": [
{
"name": "Attila Berényi",
"email": "[email protected]"
},
{
"name": "Bart van den Eijnden",
"email": "[email protected]"
},
{
"name": "Dan 'Ducky' Little",
"email": "[email protected]"
},
{
"name": "Yancy Matherne",
"email": "[email protected]"
},
{
"name": "Christian Mayer",
"email": "[email protected]"
},
{
"name": "James Milner",
"email": "[email protected]"
},
{
"name": "Adrien Pompée",
"email": "[email protected]"
},
{
"name": "Torben Barsballe",
"email": "[email protected]"
},
{
"name": "Petr Sloup",
"email": "[email protected]"
},
{
"name": "Antti Risteli",
"email": "[email protected]"
}
],
"license": "BSD-2-Clause",
"scripts": {
"start": "webpack-dev-server --config ./webpack.config.js",
"prepare": "npm run doc && npm run build",
"build": "webpack-cli --config ./webpack.config.olms.js",
"build-supermap": "webpack-cli --config ./webpack.config.olms.supermap.js && webpack-cli --config ./webpack.config.olms.supermap.js --output-filename olms-debug.js --mode development --devtool inline-source-map",
"doc": "documentation readme -s API index.js",
"lint": "eslint __test__ example *.js",
"pretest": "npm run lint",
"test": "jest",
"cover": "jest --coverage"
},
"dependencies": {
"@mapbox/mapbox-gl-style-spec": "^13.14.0",
"mapbox-to-css-font": "^2.4.0",
"webfont-matcher": "^1.1.0"
},
"peerDependencies": {
"ol": ">=5.0.0-beta.13 <5.0.0-c"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-jest": "^23.0.0-alpha.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.11",
"deep-freeze": "0.0.1",
"documentation": "^4.0.0-rc.1",
"eslint": "^4.10.0",
"eslint-config-openlayers": "^7.0.0",
"html-webpack-plugin": "^3.1.0",
"isomorphic-fetch": "^2.2.1",
"jest": "^20.0.4",
"jest-cli": "^21.2.1",
"json5": "^0.5.1",
"mapbox-gl-styles": "^2.0.2",
"mkdirp": "^0.5.1",
"nock": "^9.2.3",
"ol": ">=5.0.0-beta.13 <5.0.0-c",
"regenerator-runtime": "^0.11.1",
"should": "^11.2.1",
"should-approximately-deep": "^1.1.0",
"style-loader": "^0.20.3",
"webpack": "^4.41.3",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
},
"jest": {
"setupFiles": [
"<rootDir>/env-setup.js"
],
"transformIgnorePatterns": [
"node_modules/(?!(ol|mapbox-to-ol-style)/)"
],
"coveragePathIgnorePatterns": [
"env-setup.js",
"/node_modules/"
]
}
}