-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.1 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
{
"name": "i3-status",
"version": "0.2.2",
"description": "A highly customizable i3wm status bar",
"type": "module",
"main": "src/index.js",
"bin": "./src/index.js",
"scripts": {
"test": "mocha test --recursive",
"watch": "mocha test --recursive --reporter min --watch --parallel",
"coverage": "c8 npm run test"
},
"repository": {
"type": "git",
"url": "git@github.com:fehmer/i3-status.git"
},
"engines": {
"node": ">=14.0.0"
},
"keywords": [
"i3",
"i3wn",
"i3status",
"i3blocks",
"i3-bar"
],
"author": "Christian Fehmer",
"license": "MIT",
"dependencies": {
"aes256": "^1.1.0",
"bytes": "^3.1.2",
"commander": "^2.9.0",
"deep-map": "^1.5.0",
"diskusage": "^1.1.3",
"moment": "^2.29.4",
"moment-duration-format": "^2.3.2",
"read-yaml": "^1.1.0",
"winston": "^2.3.0"
},
"devDependencies": {
"c8": "^7.12.0",
"chai": "^4.3.6",
"chai-spies": "^1.0.0",
"chai-string": "^1.5.0",
"concat-stream": "^2.0.0",
"i3-status-starter": "^0.1.1",
"mocha": "^10.0.0",
"sinon": "^14.0.1"
}
}