-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.93 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
{
"name": "fhem-client",
"version": "0.1.9",
"description": "A small Promise-based client for executing FHEM commands via FHEMWEB, supporting SSL, Basic Auth and CSRF Token.",
"main": "lib/fhem-client.js",
"types": "lib/fhem-client.d.ts",
"files": [
"lib"
],
"author": "derkallevombau",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/derkallevombau/fhem-client.git"
},
"bugs": {
"url": "https://github.com/derkallevombau/fhem-client/issues"
},
"homepage": "https://derkallevombau.github.io/fhem-client/",
"keywords": [
"Client",
"FHEM"
],
"config": {
"outDir": "lib",
"lintCfgSubtreeRepoBasePath": "~/VS-Code-Projects/linter-configs/"
},
"scripts": {
"generateJs": "tsc -p ./ --outDir \"$npm_package_config_outDir\" --removeComments true --declaration false --declarationMap false",
"generateDts": "tsc -p ./ --outDir \"$npm_package_config_outDir\" --emitDeclarationOnly true",
"compile": "npm run generateJs && npm run generateDts && npm run generateDoc",
"watch": "tsc --watch -p ./ --noEmitOnError false",
"lint": "eslint --ext .ts src",
"generateDoc": "typedoc --options typedoc.js --inputFiles src && touch docs/.nojekyll",
"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"
},
"devDependencies": {
"@types/node": "^14.14.35",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"eslint": "^7.22.0",
"eslint-plugin-tsdoc": "^0.2.11",
"typedoc": "0.17.7",
"typescript": "^4.2.3"
}
}