-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
71 lines (71 loc) · 1.42 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
67
68
69
70
71
{
"name": "@tuyapi/cloud",
"version": "0.6.2",
"description": "A NodeJS wrapper for Tuya's cloud API",
"main": "index.js",
"dependencies": {
"debug": "^4.3.4",
"got": "^11.8.5",
"is": "^3.3.0",
"node-rsa": "^1.1.1",
"randomatic": "^3.1.1",
"sort-keys-recursive": "^2.1.7",
"uuid": "^9.0.0"
},
"engines": {
"node": ">=12.0.0"
},
"devDependencies": {
"ava": "^0.25.0",
"coveralls": "^3.1.1",
"nyc": "^15.1.0",
"xo": "^0.21.1"
},
"xo": {
"space": true,
"ignores": [
"docs"
],
"rules": {
"no-throw-literal": [
1
],
"max-len": [
"error",
{
"code": 90
}
],
"indent": [
"error",
2,
{
"ObjectExpression": "first",
"ArrayExpression": "first"
}
]
}
},
"scripts": {
"test": "xo && ava",
"cover": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"document": "npx documentation build index.js -f html -o docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TuyaAPI/cloud.git"
},
"keywords": [
"iot",
"cloud",
"tuya",
"wrapper",
"api"
],
"author": "“Max <codetheweb@icloud.com> (https://maxisom.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/TuyaAPI/cloud/issues"
},
"homepage": "https://github.com/TuyaAPI/cloud#readme"
}