forked from opening-hours/opening_hours.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.82 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
{
"name": "opening_hours",
"main": "opening_hours.js",
"description": "Library to parse and process opening_hours tag from OpenStreetMap data",
"version": "3.5.0",
"homepage": "https://github.com/opening-hours/opening_hours.js",
"author": "Dmitry Marakasov <[email protected]>",
"maintainers": [
"Robin Schneider <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/opening-hours/opening_hours.js"
},
"bugs": "https://github.com/opening-hours/opening_hours.js/issues?state=open",
"keywords": [
"openstreetmap",
"OSM",
"opening_hours"
],
"license": "LGPL-3.0",
"files": [
"Makefile",
"CHANGELOG.rst",
"LICENSE",
"licenses/",
"opening_hours.js",
"js/",
"locales/core.js"
],
"directories": {
"doc": "./docs/",
"example": "/examples/",
"locales": "./locales/"
},
"scripts": {
"build": "make build",
"test": "make check-full",
"osm-tag-data-check": "make osm-tag-data-check",
"benchmark": "make benchmark",
"interactive_testing": "make run-interactive_testing",
"regex_search": "make run-regex_search"
},
"dependencies": {
"suncalc": "^1.8.0",
"uglify-js": "^2.7.5"
},
"devDependencies": {
"assert": "^1.4.1",
"colors": "^0.6.2",
"glob": "^7.1.1",
"https": "^1.0.0",
"js-yaml": "^3.8.2",
"line-reader": "^0.4.0",
"optimist": "^0.6.1",
"package-json-validator": "^0.6.1",
"rollup": "^0.50.0",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-yaml": "^1.0.0",
"sprintf-js": "1.1.1",
"timekeeper": "^2.0.0",
"uglify-js": "^3.0.15"
},
"peerDependencies": {
"i18next-client": "^1.11.1",
"moment": "^2.10.6",
"country-language": "^0.1.7"
},
"engines": {
"node": ">=6.0.0"
}
}