forked from Dominique92/ol-geocoder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.4 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
{
"name": "ol-geocoder",
"version": "4.0.0",
"description": "A geocoder extension for OpenLayers.",
"author": "Jonatas Walker",
"homepage": "https://github.com/jonataswalker/ol-geocoder",
"license": "MIT",
"main": "dist/ol-geocoder.js",
"repository": {
"type": "git",
"url": "git://github.com/jonataswalker/ol-geocoder.git"
},
"bugs": {
"url": "https://github.com/jonataswalker/ol-geocoder/issues"
},
"files": [
"dist/"
],
"browserslist": [
"defaults"
],
"keywords": [
"geocoder",
"openlayers",
"nominatim"
],
"scripts": {
"dev": "run-s lint build:css rollup:dev",
"build": "run-s lint rollup build:css",
"build:css": "node build/build-css",
"rollup": "rollup -c build/config.js",
"rollup:dev": "rollup -w -c build/config.js",
"lint": "eslint build test src examples --cache",
"ci": "run-s build test:unit test:controls test:providers",
"test": "run-s build test:unit test:controls",
"test:controls": "testcafe chrome test/e2e/controls/*.test.js",
"test:providers": "testcafe chrome test/e2e/providers/*.test.js",
"test:unit": "jest",
"test:unit:watch": "jest --watch"
},
"peerDependencies": {
"ol": ">4.1.0"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.6.3",
"@babel/preset-env": "^7.6.3",
"autoprefixer": "^9.6.4",
"babel-jest": "^24.9.0",
"boxen": "^4.1.0",
"bytes": "^3.1.0",
"canvas": "^2.6.0",
"chalk": "^2.4.2",
"cssnano": "^4.1.10",
"dotenv": "^8.1.0",
"eslint": "^6.5.1",
"eslint-config-jwalker": "^5.2.0",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-testcafe": "^0.2.1",
"gzip-size": "^5.1.1",
"jest": "^24.9.0",
"node-sass": "^4.12.0",
"node-sass-json-importer": "^4.1.0",
"npm-run-all": "^4.1.5",
"ol": "^6.0.1",
"postcss": "^7.0.18",
"postcss-import": "^12.0.1",
"postcss-reporter": "^6.0.1",
"prettier": "^1.18.2",
"rollup": "^1.23.1",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-filesize": "^6.2.0",
"rollup-plugin-includepaths": "^0.2.3",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-uglify": "^6.0.3",
"testcafe": "^1.5.0",
"uglify-es": "^3.3.9"
}
}