forked from fehmer/i3-status
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.53 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
{
"name": "i3-status",
"version": "0.1.4",
"description": "A highly customizable i3wm status bar",
"main": "lib/index.js",
"bin": "./lib/index.js",
"scripts": {
"prepublish": "npm run compile",
"compile": "babel src/ -d lib -s",
"test": "npm run compile && node_modules/mocha/bin/mocha --compilers js:babel-register test --recursive --reporter gitlablist-mocha",
"watch": "npm run compile && (babel -w src/ -d lib -s &)",
"cover": "npm run compile && istanbul cover node_modules/mocha/bin/_mocha -- --compilers js:babel-core/register --colors --reporter dot test/ --recursive"
},
"repository": {
"type": "git",
"url": "git@github.com:fehmer/i3-status.git"
},
"babel": {
"presets": [
"latest"
]
},
"engines": {
"node": ">=6.0.0"
},
"keywords": [
"i3",
"i3wn",
"i3status",
"i3blocks",
"i3-bar"
],
"author": "Christian Fehmer",
"license": "MIT",
"dependencies": {
"aes256": "^1.0.2",
"bytes": "^2.4.0",
"commander": "^2.9.0",
"deep-map": "^1.5.0",
"diskusage": "^0.2.2",
"moment": "^2.17.1",
"moment-duration-format": "^1.3.0",
"read-yaml": "^1.0.0",
"winston": "^2.3.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-latest": "^6.16.0",
"chai": "^4.0.2",
"chai-string": "^1.4.0",
"codacy-coverage": "^2.0.0",
"concat-stream": "^1.5.2",
"gitlablist-mocha": "^1.0.2",
"i3-status-starter": "^0.1.1",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^3.2.0",
"sinon": "^1.17.6"
}
}