UNPKG

3.55 kBJSONView Raw
1{
2 "name": "openlayers",
3 "version": "4.3.2",
4 "description": "Build tools and sources for developing OpenLayers based mapping applications",
5 "keywords": [
6 "map",
7 "mapping",
8 "ol"
9 ],
10 "homepage": "https://openlayers.org/",
11 "scripts": {
12 "install": "node tasks/install.js",
13 "postinstall": "closure-util update",
14 "start": "node tasks/serve.js",
15 "pretest": "eslint tasks test test_rendering src examples",
16 "lint-package": "eslint --fix build/package",
17 "test": "node tasks/test.js",
18 "debug-server": "node tasks/serve-lib.js"
19 },
20 "main": "dist/ol.js",
21 "repository": {
22 "type": "git",
23 "url": "git://github.com/openlayers/openlayers.git"
24 },
25 "license": "BSD-2-Clause",
26 "bugs": {
27 "url": "https://github.com/openlayers/openlayers/issues"
28 },
29 "browser": "dist/ol.js",
30 "style": [
31 "css/ol.css"
32 ],
33 "dependencies": {
34 "async": "2.5.0",
35 "closure-util": "1.22.0",
36 "fs-extra": "4.0.1",
37 "jsdoc": "3.5.4",
38 "nomnom": "1.8.1",
39 "pbf": "3.0.5",
40 "pixelworks": "1.1.0",
41 "rbush": "2.0.1",
42 "rollup": "^0.47.2",
43 "rollup-plugin-cleanup": "^1.0.0",
44 "rollup-plugin-commonjs": "^8.0.2",
45 "rollup-plugin-node-resolve": "^3.0.0",
46 "temp": "0.8.3",
47 "@mapbox/vector-tile": "1.3.0",
48 "walk": "2.3.9"
49 },
50 "devDependencies": {
51 "clean-css-cli": "4.1.6",
52 "coveralls": "2.13.1",
53 "debounce": "^1.0.0",
54 "eslint": "4.4.1",
55 "eslint-config-openlayers": "7.0.0",
56 "eslint-plugin-openlayers-internal": "^3.1.0",
57 "expect.js": "0.3.1",
58 "gaze": "^1.0.0",
59 "glob": "7.1.1",
60 "handlebars": "4.0.10",
61 "istanbul": "0.4.5",
62 "jquery": "3.2.1",
63 "jscodeshift": "^0.3.30",
64 "marked": "0.3.6",
65 "metalsmith": "2.3.0",
66 "metalsmith-layouts": "1.8.1",
67 "mocha": "3.5.0",
68 "mocha-phantomjs-core": "^2.1.0",
69 "mustache": "2.3.0",
70 "phantomjs-prebuilt": "2.1.14",
71 "proj4": "2.4.4",
72 "resemblejs": "2.2.4",
73 "serve-files": "1.0.1",
74 "sinon": "3.2.0",
75 "slimerjs": "0.10.3"
76 },
77 "eslintConfig": {
78 "extends": "openlayers",
79 "globals": {
80 "ArrayBuffer": false,
81 "Float32Array": false,
82 "Uint16Array": false,
83 "Uint32Array": false,
84 "Uint8Array": false,
85 "Uint8ClampedArray": false,
86 "ol": false,
87 "goog": false,
88 "proj4": false
89 },
90 "plugins": [
91 "openlayers-internal"
92 ],
93 "rules": {
94 "no-constant-condition": 0,
95 "openlayers-internal/enum": 2,
96 "openlayers-internal/no-duplicate-requires": 2,
97 "openlayers-internal/no-missing-requires": 2,
98 "openlayers-internal/no-unused-requires": 2,
99 "openlayers-internal/one-provide": 2,
100 "openlayers-internal/requires-first": 2,
101 "openlayers-internal/valid-provide": 2,
102 "openlayers-internal/valid-requires": 2,
103 "indent": [
104 2,
105 2,
106 {
107 "VariableDeclarator": 2,
108 "SwitchCase": 1,
109 "MemberExpression": 2,
110 "FunctionDeclaration": {
111 "parameters": 2,
112 "body": 1
113 },
114 "FunctionExpression": {
115 "parameters": 2,
116 "body": 1
117 },
118 "CallExpression": {
119 "arguments": 2
120 }
121 }
122 ]
123 }
124 },
125 "ext": [
126 {
127 "module": "rbush"
128 },
129 {
130 "module": "pbf",
131 "name": "PBF"
132 },
133 {
134 "module": "pixelworks",
135 "import": "Processor"
136 },
137 {
138 "module": "@mapbox/vector-tile",
139 "name": "vectortile",
140 "import": "VectorTile"
141 }
142 ]
143}