forked from ERNICommunity/at11
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.49 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
{
"name": "at11",
"description": "Daily lunch menu application",
"version": "1.0.0",
"dependencies": {
"charset": "^1.0.0",
"cheerio": "^0.22.0",
"express": "^4.15.2",
"hbs": "^4.0.0",
"iconv-lite": "^0.6.2",
"moment-timezone": "^0.5.13",
"request": "^2.81.0"
},
"devDependencies": {
"mocha": "^3.2.0",
"jshint": "^2.9.1",
"jscs": "^3.0.7"
},
"scripts": {
"start": "node app.js",
"pretest": "jshint --verbose app.js cache.js config.js menuFetcher.js parsers/ static/js/",
"test": "mocha --reporter spec",
"posttest": "jscs --verbose app.js cache.js config.js menuFetcher.js parsers/ static/js/"
},
"author": {
"name": "Jakub Šturc",
"email": "[email protected]"
},
"contributors": [
{
"name": "Ján Neščivera",
"email": "[email protected]"
},
{
"name": "Matúš Brliť",
"email": "[email protected]"
},
{
"name": "Peter Matejka",
"email": "[email protected]"
},
{
"name": "Andrej Mandli",
"email": "[email protected]"
},
{
"name": "Marek Linka",
"email": "[email protected]"
}
],
"keywords": [
"lunch",
"menu",
"at11",
"erni",
"obed"
],
"repository": {
"type": "git",
"url": "https://github.com/at11/at11.git"
},
"bugs": {
"url": "https://github.com/at11/at11/issues"
},
"engines": {
"node": "6.9.x"
},
"license": "SEE LICENSE IN LICENSE",
"main": "app.js"
}