forked from ERNICommunity/at11
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.78 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
77
78
79
80
81
{
"name": "at11",
"description": "Daily lunch menu application",
"version": "2.0.0",
"dependencies": {
"applicationinsights": "^1.7.0",
"cheerio": "^0.22.0",
"express": "^4.17.1",
"hbs": "^4.1.0",
"moment-timezone": "^0.5.27",
"request": "^2.88.0"
},
"devDependencies": {
"@types/cheerio": "^0.22.16",
"@types/express": "^4.17.2",
"@types/hbs": "^4.0.1",
"@types/mocha": "^7.0.1",
"@types/moment-timezone": "^0.5.12",
"@types/node": "^13.7.0",
"@types/request": "^2.48.4",
"mocha": "^7.0.1",
"tslint": "^6.0.0",
"typescript": "^3.7.5",
"typescript-tslint-plugin": "^0.5.5"
},
"scripts": {
"build": "tsc",
"start": "node dist/app.js",
"pretest": "tslint -p ./tsconfig.json",
"test": "mocha ./dist/test --exit"
},
"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]"
},
{
"name": "Milos Karas",
"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": "10.16.x"
},
"license": "Unlicense",
"main": "app.js"
}