-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.26 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.26 KB
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
{
"name": "node-red-contrib-tuyapi-cloud",
"version": "0.2.0",
"description": "TuyaSmart Device Cloud API Node-RED module",
"author": "Abilio Henrique <admin@zyrorl.com>",
"license": "MIT",
"main": "build/",
"homepage": "https://github.com/zyrorl/node-red-contrib-tuyapi-cloud/",
"bugs": {
"url": "https://github.com/zyrorl/node-red-contrib-tuyapi-cloud/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:zyrorl/node-red-contrib-tuyapi-cloud.git"
},
"keywords": [
"tuya",
"node-red"
],
"scripts": {
"build": "rsync -am ./src/* ./build --exclude '*.ts' && tsc",
"preversion": "npm run build && changelog-verify CHANGELOG.md",
"version": "version-changelog CHANGELOG.md && git add CHANGELOG.md"
},
"node-red": {
"nodes": {
"tuya-device": "build/index.js"
}
},
"dependencies": {
"@tuyapi/cloud": "^0.4.1",
"lodash": "^4.17.11"
},
"devDependencies": {
"@temando/tsconfig": "^1.0.1",
"@types/jest": "^24.0.13",
"@types/node": "^12.0.8",
"changelog-verify": "^1.1.2",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"ts-node": "^8.2.0",
"tslint": "^5.18.0",
"tslint-config-temando": "^1.6.1",
"typescript": "^3.5.2",
"version-changelog": "^3.1.1"
}
}