-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.38 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
63
64
65
66
{
"name": "tf-connected",
"version": "3.0.1",
"description": "A Utility to show connected Tinkerforge Bricks and Bricklets!",
"main": "./bin/tf-connected.js",
"scripts": {
"test": "ava",
"lint": "xo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fscherwi/tf-connected.git"
},
"author": "fscherwi",
"license": "MIT",
"keywords": [
"tinkerforge",
"hardware",
"brick",
"bricklet"
],
"bugs": {
"url": "https://github.com/fscherwi/tf-connected/issues"
},
"homepage": "https://github.com/fscherwi/tf-connected/blob/master/README.md",
"dependencies": {
"replace-string": "^4.0.0",
"table": "^6.9.0",
"tinkerforge": "^2.1.35",
"yargs": "^17.7.2"
},
"devDependencies": {
"ava": "^6.2.0",
"eslint-plugin-jsdoc": "^50.6.3",
"xo": "^0.58.0"
},
"preferGlobal": true,
"bin": {
"tf-connected": "bin/tf-connected.js"
},
"files": [
"src/connected.js",
"src/get-name.js",
"bin/tf-connected.js",
"src/error-text.js"
],
"xo": {
"rules": {
"unicorn/no-process-exit": 0,
"unicorn/prefer-ternary": 0,
"max-params": 0,
"object-curly-spacing": [
"error",
"always"
],
"unicorn/prefer-module": 0,
"comma-dangle": 0
},
"extends": [
"plugin:jsdoc/recommended"
]
},
"engines": {
"node": ">=14"
}
}