-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.87 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.87 KB
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
{
"name": "guide4you",
"version": "3.4.0",
"description": "A configurable web client for geo-applications. Uses OpenLayers. Suitable for mobile devices.",
"keywords": [
"map",
"map client",
"openlayers",
"search",
"urlapi",
"g4u server"
],
"engines": {
"node": ">=8"
},
"author": "Klaus Benndorf",
"homepage": "https://github.com/KlausBenndorf/guide4you",
"license": "MIT",
"contributors": [
"Sascha Klemenjak <sascha.klemenjak@benndorf.de>",
"Josef Schugt <josef.schugt@benndorf.de>",
"Simon Seyock <simonseyock@gmail.com>"
],
"repository": {
"type": "git",
"url": "https://github.com/KlausBenndorf/guide4you"
},
"peerDependencies": {
"jquery": "3.4.1",
"ol": "6.1.1"
},
"dependencies": {
"better-scroll": "1.15.2",
"csscolorparser": "1.0.3",
"lodash": "4.17.15",
"notifyjs-browser": "0.4.2",
"proj4": "2.6.0",
"json5": "^2.1.1"
},
"devDependencies": {
"babel-polyfill": "6.26.0",
"concurrently": "5.0.0",
"cross-env": "^6.0.3",
"esdoc": "1.1.0",
"esdoc-standard-plugin": "1.0.0",
"eslint": "6.6.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"guide4you-builder": "3.5.1",
"guide4you-proxy": "github:KlausBenndorf/guide4you-proxy#v1.1.0",
"http-server": "0.11.1",
"jquery": "3.4.1",
"mocha": "6.2.2",
"ol": "6.1.1",
"phantomjs-prebuilt": "2.1.14",
"selenium-webdriver": "3.6.0",
"wait-on": "3.3.0"
},
"scripts": {
"grab": "g4u-grab guide4you-builder",
"dist": "rimraf dist/* && g4u-build -c conf/dist/webpack.dist.js",
"dev:simple": "cross-env-shell DEVELOPMENT=true g4u-build -c conf/simple/webpack.dev.js",
"prod:simple": "rimraf build/simple/* && g4u-build -c conf/simple/webpack.prod.js",
"debug:simple": "g4u-build -c conf/simple/webpack.debug.js",
"dev:full": "cross-env-shell DEVELOPMENT=true g4u-build -c conf/full/webpack.dev.js",
"prod:full": "rimraf build/full/* && g4u-build -c conf/full/webpack.prod.js",
"debug:full": "g4u-build -c conf/full/webpack.debug.js",
"full": "npm run prod:full && npm run debug:full",
"lint": "eslint src/ tests/",
"version": "(npm run test && npm run doc && git add dist/* docs/* package.json) || git checkout .",
"server": "http-server ./ -p 8089 -s",
"runTests": "concurrently --kill-others --success first \"npm run server\" \"wait-on -l http-get://localhost:8089 && mocha tests/*\"",
"test": "npm run lint && npm run dist && npm run runTests && echo \"Tests completed successfully\"",
"test:fast": "npm run runTests && echo \"Tests completed successfully\"",
"doc": "esdoc -c esdoc.json"
},
"main": "./dist/g4u.js",
"module": "./config/dist/entry.js",
"types": "./dist/g4u.d.ts"
}