-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 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
{
"name": "guide4you-module-search",
"version": "3.2.0",
"description": "A search parser module for Guide4You.",
"keywords": [
"search",
"map",
"map client",
"openlayers"
],
"author": "Klaus Benndorf",
"homepage": "https://github.com/KlausBenndorf/guide4you-module-search",
"contributors": [
"Sascha Klemenjak <[email protected]>",
"Josef Schugt <[email protected]>",
"Simon Seyock <[email protected]>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/KlausBenndorf/guide4you-module-search"
},
"peerDependencies": {
"guide4you": "3.3.*",
"jquery": "3.3.1",
"ol": "5.2.0"
},
"devDependencies": {
"concurrently": "4.0.1",
"cross-env": "^5.2.0",
"esdoc": "1.1.0",
"esdoc-standard-plugin": "1.0.0",
"eslint": "5.7.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"guide4you": "3.3.*",
"guide4you-builder": "3.5.1",
"guide4you-proxy": "github:KlausBenndorf/guide4you-proxy#v1.1.0",
"http-server": "0.11.1",
"jquery": "3.3.1",
"mocha": "5.2.0",
"ol": "5.2.0",
"phantomjs-prebuilt": "2.1.14",
"selenium-webdriver": "3.6.0",
"wait-on": "3.1.0"
},
"scripts": {
"dist": "rimraf dist/* && g4u-build -c conf/dist/webpack.dist.js",
"dev": "cross-env-shell DEVELOPMENT=true g4u-build -c conf/build/webpack.dev.js",
"prod": "rimraf build/* && g4u-build -c conf/build/webpack.prod.js",
"debug": "rimraf build/* && g4u-build -c conf/build/webpack.prod.js",
"grab": "g4u-grab guide4you-builder guide4you",
"lint": "eslint src/ tests/",
"version": "(npm run test && git add -A) || git checkout .",
"server": "http-server ./ -p 8089 -s",
"buildTests": "g4u-buildTests node_modules/guide4you/tests tests",
"buildTestsAndEnv": "concurrently \"npm run buildTests\" \"npm run dist\"",
"test": "npm run lint && npm run buildTestsAndEnv && npm run runTests && echo \"Tests completed successfully\"",
"test:fast": "npm run buildTests && npm run runTests && echo \"Tests completed successfully\"",
"runTests": "concurrently --kill-others --success first \"npm run server\" \"wait-on -l http-get://localhost:8089 && mocha build/tests/*\"",
"doc": "esdoc -c esdoc.json"
}
}