-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.54 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
{
"name": "node-wifi-cli",
"version": "2.1.1",
"description": "A command line interface to manage wifi",
"keywords": [
"wifi",
"multiplatform",
"node",
"cli"
],
"author": "Thibault Friedrich",
"contributors": [
"Thibault Friedrich <thibault.friedrich@gmail.com> (https://thibaultfriedrich.io)"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/friedrith/node-wifi-cli.git"
},
"bugs": {
"url": "https://github.com/friedrith/node-wifi-cli/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"bin": {
"wifi": "bin/wifi.js"
},
"type": "module",
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"command-line-args": "^5.2.0",
"command-line-usage": "^6.1.1",
"node-wifi": "^2.0.16"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@commitlint/travis-cli": "^13.1.0",
"babel-eslint": "^10.1.0",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-node": "^11.1.0",
"husky": "^7.0.1",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"standard-version": "^9.3.1"
},
"scripts": {
"test": "jest",
"commitlint": "commitlint --from 68078dea002dea9828c01352c7e03bb12a30742a",
"lint": "eslint bin/**/*.js",
"format": "prettier --check 'bin/**/*.js'",
"format:fix": "prettier --write 'bin/**/*.js'",
"release": "standard-version"
}
}