-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.27 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
{
"name": "guide4you-module-function-caller-button",
"version": "1.1.0",
"description": "A generic button that calls an (argumentless) function",
"keywords": [
"map",
"map client",
"openlayers"
],
"author": "Klaus Benndorf",
"homepage": "https://github.com/KlausBenndorf/guide4you-module-function-caller-button",
"license": "MIT",
"contributors": [
"Josef Schugt <[email protected]>",
"Simon Seyock <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/KlausBenndorf/guide4you-module-function-caller-button"
},
"peerDependencies": {
"guide4you": "2.10.*",
"jquery": "3.3.1",
"openlayers": "github:KlausBenndorf/ol3#g4u3_v4.6.4"
},
"dependencies": {
"better-scroll": "1.8.4",
"csscolorparser": "1.0.3",
"guide4you": "^2.10.2",
"lodash": "4.17.5",
"notifyjs-browser": "0.4.2",
"proj4": "^2.4.3",
"strip-json-comments": "2.0.1"
},
"devDependencies": {
"babel-polyfill": "^6.26.0",
"concurrently": "^3.4.0",
"esdoc": "^1.0.3",
"esdoc-standard-plugin": "^1.0.0",
"guide4you-builder": "2.2.2",
"guide4you-proxy": "github:KlausBenndorf/guide4you-proxy#v1.1.0",
"http-server": "^0.11.0",
"jquery": "3.3.1",
"mocha": "^5.0.4",
"openlayers": "github:KlausBenndorf/ol3#g4u3_v4.6.4",
"phantomjs-prebuilt": "2.1.14",
"selenium-webdriver": "3.6.0",
"standard": "^11.0.0",
"wait-on": "^2.1.0"
},
"scripts": {
"dist": "g4u-build -m dist -c conf/dist",
"build": "g4u-build -m prod -c",
"debugBuild": "g4u-build -d -m prod -c",
"dev": "g4u-build -m dev -c",
"lint": "eslint src/ tests/",
"version": "(npm run test && npm run doc && git add -A) || git checkout .",
"buildTests": "concurrently \"g4u-buildTests\" \"npm run dist\"",
"runTests": " concurrently --kill-others --success first \"http-server ./ -p 8089 -s\" \"wait-on -l http-get://localhost:8089 && mocha build/tests/*\"",
"test": "npm run lint && npm run buildTests && npm run runTests && echo \"Tests completed successfully\"",
"doc": "esdoc -c esdoc.json",
"typing": "jsdoc -t node_modules/tsd-jsdoc -r conf/dist/entry.js src/ -d dist/"
},
"main": "./dist/g4u.js",
"module": "./config/dist/entry.js",
"types": "./dist/g4u.d.ts"
}