-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.89 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
{
"name": "tuyadevctlsrv-fhem",
"version": "0.1.0",
"description": "A HTTP server to control Tuya devices using tuyAPI. Backend for TuyaMaster and TuyaDevice FHEM modules.",
"main": "dist/bin/tuyadevctlsrv-fhem.js",
"files": [
"dist",
"src"
],
"author": "derkallevombau",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/derkallevombau/tuyadevctlsrv-fhem.git"
},
"bugs": {
"url": "https://github.com/derkallevombau/tuyadevctlsrv-fhem/issues"
},
"homepage": "https://github.com/derkallevombau/tuyadevctlsrv-fhem#readme",
"keywords": [
"Tuya",
"SmartLife",
"FHEM"
],
"config": {
"rootDir": "src",
"outDir": "dist",
"lintCfgSubtreeRepoBasePath": "~/VS-Code-Projects/linter-configs/"
},
"scripts": {
"compile": "tsc -p ./ --rootDir \"$npm_package_config_rootDir\" --outDir \"$npm_package_config_outDir\" --removeComments true",
"start": "npm run compile && node dist/bin/tuyadevctlsrv.js",
"watch": "tsc --watch -p ./ --noEmitOnError false",
"lint": "eslint --ext .ts \"$npm_package_config_rootDir\"",
"lintCfgTsAdd": "git subtree add -P lintcfg-ts --squash \"$npm_package_config_lintCfgSubtreeRepoBasePath\"ts master && ln -s lintcfg-ts/.eslintrc.js .eslintrc.js",
"lintCfgTsPush": "git subtree push -P lintcfg-ts \"$npm_package_config_lintCfgSubtreeRepoBasePath\"ts master",
"lintCfgTsPull": "git subtree pull -P lintcfg-ts --squash \"$npm_package_config_lintCfgSubtreeRepoBasePath\"ts master",
"regenerateDeps": "x=package-lock.json; y=node_modules; [ -f $x ] && rm $x; [ -d $y ] && rm -r $y; npm i"
},
"dependencies": {
"fhem-client": "^0.1.8",
"log4js": "^6.3.0",
"strftime": "^0.10.0",
"tuyapi": "^6.1.5"
},
"devDependencies": {
"@types/node": "^14.14.34",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"eslint": "^7.22.0",
"eslint-plugin-tsdoc": "^0.2.11",
"typescript": "^4.2.3"
}
}