This repository has been archived by the owner on Feb 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 87
/
package.json
82 lines (82 loc) · 2.44 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
{
"name": "olgm",
"version": "1.8.0",
"description": "OpenLayers Google Maps integration library",
"keywords": [
"map",
"mapping",
"ol",
"google maps"
],
"private": true,
"homepage": "http://mapgears.github.io/ol3-google-maps/",
"scripts": {
"lint": "eslint tasks test src/olgm examples",
"pretest": "npm run lint",
"test": "npm run karma -- --single-run",
"karma": "karma start test/karma.config.js",
"serve-examples": "webpack-dev-server --config examples/webpack/config.js --mode development --watch",
"build-examples": "webpack --config examples/webpack/config.js --mode production",
"build-package": "npm run copy-src && npm run copy-css && npm run copy-readme && node tasks/prepare-package",
"copy-src": "rm -rf build/olgm && mkdirp build && cp -rf src/olgm build",
"copy-css": "cp src/olgm/olgm.css build/olgm/olgm.css",
"copy-readme": "cp README.md build/olgm/",
"apidoc": "jsdoc config/jsdoc/api/index.md -c config/jsdoc/api/conf.json -P package.json -d build/apidoc",
"publish": "npm run build-package && npm publish build/olgm"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/mapgears/ol3-google-maps.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mapgears/ol3-google-maps/issues"
},
"peerDependencies": {
"ol": "7"
},
"devDependencies": {
"chai": "^4.1.2",
"copy-webpack-plugin": "^4.4.1",
"coveralls": "3.0.1",
"css-loader": "^3.0.0",
"eslint": "6.3.0",
"eslint-config-openlayers": "^12.0.0",
"front-matter": "^2.1.2",
"glob": "^7.1.2",
"handlebars": "4.1.2",
"istanbul": "0.4.5",
"jsdoc": "3.5.5",
"karma": "^2.0.0",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "4.0.0-beta.0",
"marked": "0.4.0",
"mkdirp": "^0.5.1",
"mocha": "5.2.0",
"ol": "7.3",
"ol-layerswitcher": "^3.3.0",
"phantomjs-prebuilt": "^2.1.16",
"recast": "0.15.2",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^1.2.5",
"walk": "^2.3.9",
"webpack": "4.16.0",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4"
},
"eslintConfig": {
"extends": "openlayers",
"globals": {
"google": false
}
},
"sideEffects": [
"olgm.css"
]
}