forked from opening-hours/opening_hours.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.9 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
{
"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",
"eslint": "eslint index.js",
"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"
},
"devDependencies": {
"assert": "^1.4.1",
"colors": "^0.6.2",
"country-language": "^0.1.7",
"eslint": "^6.8.0",
"full-icu": "^1.2.0",
"glob": "^7.1.1",
"https": "^1.0.0",
"i18next-client": "^1.11.1",
"js-yaml": "^3.8.2",
"line-reader": "^0.4.0",
"moment": "^2.10.6",
"optimist": "^0.6.1",
"package-json-validator": "^0.6.1",
"rollup": "^1.29.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-yaml": "^2.0.0",
"sprintf-js": "1.1.1",
"terser": "^4.6.3",
"timekeeper": "^2.0.0"
},
"peerDependencies": {
"i18next-client": "^1.11.1"
},
"engines": {
"node": ">=8.0.0"
}
}