-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.21 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
{
"name": "i3-status-volume",
"version": "0.1.0",
"description": "Volume module for i3-status",
"main": "lib/index.js",
"url": "https://github.com/tomasbulva/i3-status-volume/issues",
"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": "nodemon lib/index.js --exec 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": "https://github.com/tomasbulva/i3-status-volume.git"
},
"babel": {
"presets": [
"latest"
]
},
"keywords": [
"i3",
"i3wm",
"i3-status",
"i3block"
],
"author": "Tomas Bulva, Christian Fehmer",
"license": "MIT",
"dependencies": {
"loudness": "*"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-latest": "^6.16.0",
"chai": "^4.0.2",
"codacy-coverage": "^2.0.0",
"gitlablist-mocha": "^1.0.2",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^3.2.0"
}
}