-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 823 Bytes
/
package.json
File metadata and controls
50 lines (50 loc) · 823 Bytes
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": "brightness-cli",
"version": "2.4.0",
"description": "Change the screen brightness",
"license": "MIT",
"repository": "kevva/brightness-cli",
"author": {
"email": "kevinmartensson@gmail.com",
"name": "Kevin Mårtensson",
"url": "github.com/kevva"
},
"bin": {
"brightness": "cli.js"
},
"engines": {
"node": ">=4"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"cli.js"
],
"keywords": [
"app",
"brightness",
"cli",
"cli-app",
"interactive",
"linux",
"osx",
"screen",
"windows",
"xdg"
],
"dependencies": {
"brightness": "^3.0.0",
"chalk": "^2.0.1",
"cli-cursor": "^2.1.0",
"first-run": "^1.0.0",
"indent-string": "^3.1.0",
"meow": "^3.3.0",
"progress-control": "^1.0.0"
},
"devDependencies": {
"ava": "*",
"execa": "^0.7.0",
"xo": "*"
}
}