forked from opening-hours/opening_hours.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.72 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
{
"name": "opening_hours",
"main": "opening_hours.js",
"description": "Library to parse and process opening_hours tag from OpenStreetMap data",
"version": "3.4.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",
"opening_hours.js",
"opening_hours.min.js",
"benchmark.js",
"interactive_testing.js",
"real_test.js",
"test.js",
"test.en.log",
"test.de.log",
".gitignore",
"index.html",
"js",
"locales/core.js"
],
"directories": {
"doc": "./docs",
"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.7.0"
},
"optionalDependencies": {
"i18next-client": "1.11.1",
"moment": "2.10.6",
"country-language": "0.1.7"
},
"devDependencies": {
"timekeeper": "0.0.5",
"colors": "0.6.2",
"uglify-js": "2.6.0",
"sprintf-js": "1.0.3",
"browserify": "12.0.1",
"assert": "1.3.0",
"line-reader": "0.3.0",
"optimist": "0.6.1",
"https": "1.0.0",
"package-json-validator": "0.6.0"
},
"engines": {
"node": ">=0.10"
}
}