forked from opening-hours/opening_hours.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.73 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
{
"name" : "opening_hours",
"main" : "opening_hours.js",
"description": "Library to parse and process opening_hours tag from OpenStreetMap data",
"version" : "3.1.0",
"homepage" : "https://github.com/ypid/opening_hours.js",
"author" : "Dmitry Marakasov <amdmi3@amdmi3.ru>",
"maintainers": [
"Robin Schneider <ypid@riseup.net>"
],
"repository": {
"type": "git",
"url" : "git://github.com/ypid/opening_hours.js"
},
"bugs": "https://github.com/ypid/opening_hours.js/issues?state=open",
"keywords": [
"openstreetmap",
"OSM",
"opening_hours"
],
"license": "BSD",
"files": [
"LICENSE",
"README.md",
"Makefile",
"opening_hours.js",
"opening_hours.min.js",
"benchmark.js",
"interactive_testing.js",
"real_test.js",
"test.js",
"test.log",
".gitignore"
],
"directories": {
"doc": "./doc"
},
"scripts": {
"build" : "make build",
"test" : "make check",
"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.2.1"
},
"optionalDependencies": {
"i18next": ">=1.6.3",
"moment" : "2.7.x"
},
"devDependencies": {
"colors" : "0.6.*",
"uglify-js" : ">=2.0.0",
"sprintf-js" : ">=0.0.7",
"json" : ">=9.0.3",
"package-json-validator" : ">=0.1.8"
},
"engines": {
"node": ">=0.8"
}
}