forked from OakLabsInc/oak
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.7 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
{
"name": "oak",
"version": "5.0.2",
"description": "A very opinionated kiosk framework based on Electron",
"engines": {
"node": ">=10.14.x"
},
"scripts": {
"coverage": "node node_modules/.bin/istanbul cover node_modules/.bin/tape test/*.js || true",
"coveralls": "npm run coverage && node node_modules/.bin/coveralls < coverage/lcov.info && rm -rf coverage/ || true",
"test": "node_modules/.bin/standard && bin/entrypoint test/app.test.js",
"clean": "rm -rf node_modules/ package-lock.json && npm install"
},
"main": "index.js",
"bin": {
"oak": "bin/entrypoint",
"oak-rebuild": "bin/rebuild"
},
"repository": {
"type": "git",
"url": "https://github.com/OakLabsInc/oak.git"
},
"license": "Apache-2.0",
"author": {
"name": "Flynn Joffray",
"email": "nucleardreamer@gmail.com"
},
"bugs": {
"url": "https://github.com/OakLabsInc/oak/issues"
},
"homepage": "https://github.com/OakLabsInc/oak",
"dependencies": {
"commander": "~2.15.0",
"electron": "3.1.2",
"eventemitter2": "~5.0.1",
"lodash": "~4.17.10",
"minimatch": "~3.0.4",
"pino": "^5.11.1",
"pino-pretty": "^2.5.0",
"uuid": "~3.2.1"
},
"devDependencies": {
"coveralls": "~3.0.1",
"dockerfile-template": "^0.1.0",
"electron-compile": "~6.4.3",
"electron-packager": "~11.1.0",
"ip": "~1.1.5",
"istanbul": "~0.4.5",
"spectron": "~3.8.0",
"standard": "~11.0.1",
"tape": "~4.9.0"
},
"keywords": [
"oak",
"oakos",
"oak labs",
"IoT",
"kiosk",
"electron",
"docker electron",
"raspi kiosk",
"rpi",
"signage"
],
"standard": {
"ignore": [
"*/tmp/",
"examples/"
]
}
}