forked from Dominique92/ol-geocoder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.33 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
{
"name": "ol-geocoder",
"version": "3.0.01",
"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"
},
"jest": {
"testRegex": "/test/unit/.*\\.test\\.js$",
"transform": {
"^.+\\.js?$": "babel-jest"
}
},
"babel": {
"presets": [
"env"
]
},
"dependencies": {
"openlayers": "^4.5.0"
},
"devDependencies": {
"autoprefixer": "^7.1.6",
"babel-jest": "^21.2.0",
"babel-preset-env": "^1.6.1",
"boxen": "^1.0.0",
"bytes": "^3.0.0",
"canvas": "^1.6.7",
"chalk": "^2.3.0",
"cssnano": "^3.10.0",
"dotenv": "^4.0.0",
"eslint": "^4.11.0",
"eslint-config-jwalker": "^5.0.0",
"eslint-plugin-jest": "^21.3.2",
"eslint-plugin-testcafe": "^0.2.1",
"gzip-size": "^4.0.0",
"jest": "^21.2.1",
"node-sass": "^4.7.2",
"node-sass-json-importer": "^3.0.1",
"npm-run-all": "^4.0.1",
"postcss": "^6.0.14",
"postcss-import": "^11.0.0",
"postcss-reporter": "^5.0.0",
"rollup": "^0.51.8",
"rollup-plugin-buble": "^0.18.0",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-eslint": "^4.0.0",
"rollup-plugin-filesize": "^1.5.0",
"rollup-plugin-includepaths": "^0.2.2",
"rollup-plugin-json": "^2.1.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^2.0.1",
"testcafe": "^0.18.4",
"uglify-es": "^3.1.10"
}
}