-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
62 lines (62 loc) · 1.33 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
60
61
62
{
"name": "osx-wifi-cli",
"version": "2.1.0",
"description": "A command line tool for managing wifi connection in osx",
"keywords": [
"osx",
"wifi",
"cli",
"mac",
"wireless",
"network"
],
"homepage": "https://github.com/danyshaanan/osx-wifi-cli",
"author": {
"name": "Dany Shaanan",
"email": "danyshaanan@gmail.com",
"url": "http://danyshaanan.com/"
},
"os": [
"darwin"
],
"contributors": [],
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/danyshaanan/osx-wifi-cli/blob/master/LICENSE"
}
],
"repository": {
"type": "git",
"url": "git://github.com/danyshaanan/osx-wifi-cli.git"
},
"bugs": {
"url": "https://github.com/danyshaanan/osx-wifi-cli/issues",
"email": "danyshaanan@gmail.com"
},
"preferGlobal": true,
"engines": {
"node": ">=6"
},
"engineStrict": true,
"scripts": {
"lint": "eslint .",
"test": "npm run lint",
"start": "npm test"
},
"bin": {
"osx-wifi-cli": "./osx-wifi-cli.js"
},
"dependencies": {
"commander": "2.1.0"
},
"devDependencies": {
"eslint": "4.18.2",
"eslint-config-standard": "11.0.0",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-node": "5.2.1",
"eslint-plugin-promise": "3.6.0",
"eslint-plugin-standard": "3.0.1"
}
}