-
Notifications
You must be signed in to change notification settings - Fork 92
/
package.json
80 lines (80 loc) · 2.39 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
{
"name": "ol-geocoder",
"version": "4.3.4",
"description": "A geocoder extension compatible with OpenLayers v6.x to v9.0",
"author": "Jonatas Walker",
"homepage": "https://github.com/Dominique92/ol-geocoder",
"license": "MIT",
"main": "dist/ol-geocoder.js",
"repository": {
"type": "git",
"url": "git://github.com/Dominique92/ol-geocoder.git"
},
"bugs": {
"url": "https://github.com/Dominique92/ol-geocoder/issues"
},
"files": [
"dist"
],
"browserslist": [
"defaults"
],
"keywords": [
"geocoder",
"openlayers",
"nominatim"
],
"scripts": {
"beautify": "js-beautify -s=2 build/*c* examples/* konstants/* src/*.*s src/helpers/* src/providers/* package.json",
"build": "run-s rollup build:css",
"build:css": "node build/build-css",
"rollup": "rollup -c build/config.js",
"lint": "npx eslint examples/*.js konstants/*.js src/*.js src/*/*.js",
"test": "run-s build lint test:controls test:providers test:unit",
"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"
},
"dependencies": {},
"peerDependencies": {
"ol": ">=6.0.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-transform-modules-commonjs": "^7.18.6",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"autoprefixer": "^10.4.13",
"babel-jest": "^29.0.3",
"boxen": "^5.1.2",
"bytes": "^3.1.2",
"canvas": "^2.10.2",
"chalk": "^4.1.2",
"cssnano": "^5.1.14",
"dotenv": "^16.0.3",
"eslint": "^7.11.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-testcafe": "^0.2.1",
"gzip-size": "^6.0.0",
"husky": "^4.3.8",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"js-beautify": "latest",
"node-sass": "^8.0.0",
"node-sass-json-importer": "^4.3.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.31",
"postcss-import": "^14.0.0",
"postcss-reporter": "^7.0.1",
"prettier": "^2.7.1",
"rollup": "^2.79.0",
"rollup-plugin-terser": "^7.0.2",
"testcafe": "^3.4.0"
}
}