-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.01 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
{
"name": "litfass",
"version": "1.5.2",
"description": "A library for advertising displays",
"keywords": [
"advertising",
"ads",
"display",
"kiosk",
"display",
"poster"
],
"author": {
"name": "Kristian Kraljic",
"email": "[email protected]",
"url": "https://kra.lc/"
},
"license": "MIT",
"engines": {
"node": ">=11"
},
"bin": "./bin/start",
"main": "litfass.js",
"files": [
"bin/",
"config/",
"public/",
"views/",
"app.js",
"scheduler.js"
],
"repository": {
"type": "git",
"url": "https://github.com/kristian/litfass.git"
},
"homepage": "https://github.com/kristian/litfass#readme",
"scripts": {
"start": "node ./bin/start"
},
"gypfile": true,
"dependencies": {
"config": "^3.3.1",
"deepmerge": "^4.2.2",
"displays": "^1.1.2",
"express": "~4.16.1",
"http-errors": "^1.7.3",
"js-yaml": "^3.13.1",
"pug": "^2.0.4",
"puppeteer": "^2.1.1"
},
"resolutions": {
"config": "3.3.1"
}
}