forked from Dominique92/ol-geocoder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.51 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
{
"name": "ol-geocoder",
"version": "3.2.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/"
],
"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"
},
"jest": {
"testURL": "http://localhost/",
"setupFiles": [
"<rootDir>/test/env-setup.js"
],
"testRegex": "/test/unit/.*\\.test\\.js$",
"transformIgnorePatterns": [
"node_modules/(?!(ol)/)"
]
},
"babel": {
"presets": [
"env"
]
},
"peerDependencies": {
"ol": ">4.1.0"
},
"dependencies": {},
"devDependencies": {
"autoprefixer": "^9.0.1",
"babel-jest": "^23.4.2",
"babel-preset-env": "^1.7.0",
"boxen": "^1.3.0",
"bytes": "^3.0.0",
"canvas": "^1.6.11",
"chalk": "^2.4.1",
"cssnano": "^4.0.4",
"dotenv": "^6.0.0",
"eslint": "^5.15.0",
"eslint-config-jwalker": "^5.1.1",
"eslint-plugin-jest": "^21.18.0",
"eslint-plugin-testcafe": "^0.2.1",
"gzip-size": "^5.0.0",
"jest": "^24.1.0",
"node-sass": "^4.11.0",
"node-sass-json-importer": "^3.3.1",
"npm-run-all": "^4.1.3",
"ol": "^5.1.3",
"postcss": "^7.0.1",
"postcss-import": "^11.1.0",
"postcss-reporter": "^5.0.0",
"rollup": "^0.63.4",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-commonjs": "^9.1.4",
"rollup-plugin-eslint": "^5.0.0",
"rollup-plugin-filesize": "^4.0.1",
"rollup-plugin-includepaths": "^0.2.3",
"rollup-plugin-json": "^3.0.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-uglify": "^4.0.0",
"testcafe": "^15.1.317922",
"uglify-es": "^3.3.9"
}
}