-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
43 lines (43 loc) · 883 Bytes
/
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
{
"name": "journalctl",
"version": "1.1.0",
"description": "Module for consuming the Systemd Journal",
"main": "journalctl.js",
"keywords": [
"logging",
"systemd",
"journald",
"journalctl"
],
"scripts": {
"test": "happiness && jest",
"watch": "jest --watchAll"
},
"author": "Juergen Fitschen <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/jue89/node-journalctl.git"
},
"bugs": {
"url": "https://github.com/jue89/node-journalctl/issues"
},
"homepage": "https://github.com/jue89/node-journalctl#readme",
"license": "MIT",
"devDependencies": {
"happiness": "^10.0.2",
"jest": "^24.1.0"
},
"happiness": {
"globals": [
"jest",
"describe",
"test",
"expect",
"beforeEach"
]
},
"jest": {
"automock": false,
"clearMocks": true
}
}