-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (39 loc) · 946 Bytes
/
package.json
File metadata and controls
48 lines (39 loc) · 946 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
{
"name": "stir",
"description": "Open switch, or, close applications from the terminal on OSX 10.10. Built using Javascript for automation",
"version": "0.1.2",
"homepage": "https://github.com/shidel-dev/stir",
"author": {
"name": "shidel.dev",
"email": "joeshidel@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/shidel-dev/stir.git"
},
"bugs": {
"url": "https://github.com/shidel-dev/stir/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/shidel-dev/stir/blob/master/LICENSE-MIT"
}
],
"main": "lib/stir.js",
"engines": {
"node": ">= 0.8.0"
},
"preferGlobal": "true",
"bin": {
"stir" : "lib/stir.js"
},
"devDependencies": {
"grunt-contrib-jshint": "~0.6.4",
"grunt": "~0.4.5"
},
"keywords": ["osx", "close", "open", "windows", "automation"],
"dependencies": {
"commander": "~2.4.0"
}
}