-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.83 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "iobroker-sync",
"version": "1.3.1",
"description": "CLI to sync ioBroker JavaScript/TypeScript scripts with a local folder",
"license": "MIT",
"author": "Maurice Schmicking",
"repository": {
"type": "git",
"url": "git+https://github.com/mschmicking/iobroker-sync.git"
},
"bugs": {
"url": "https://github.com/mschmicking/iobroker-sync/issues"
},
"homepage": "https://github.com/mschmicking/iobroker-sync#readme",
"keywords": [
"iobroker",
"cli",
"sync",
"home-automation",
"typescript"
],
"bin": {
"iob-sync": "dist/cli.js"
},
"main": "dist/cli.js",
"engines": {
"node": ">=22"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"watch": "tsc -p tsconfig.json --watch",
"build:test": "tsc -p tsconfig.test.json",
"test": "npm run build && npm run build:test && node --test \"dist-test/test/**/*.test.js\"",
"test:unit": "npm run build:test && node --test dist-test/test/mapping.test.js dist-test/test/compare.test.js",
"clean": "rm -rf dist dist-test",
"prepublishOnly": "npm run clean && npm run lint && npm run build && npm test",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"verify": "npm run lint && npm run format:check && npx tsc -p tsconfig.json --noEmit && npm test"
},
"dependencies": {
"chokidar": "^3.6.0",
"commander": "^12.1.0",
"diff": "^5.2.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@eslint/js": "^9.39.5",
"@types/diff": "^5.2.1",
"@types/node": "^22.10.0",
"@types/ws": "^8.5.13",
"eslint": "^9.39.5",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.9.6",
"typescript": "^5.7.2",
"typescript-eslint": "^8.65.0"
},
"files": [
"dist/",
"README.md",
"LICENSE"
]
}