-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
53 lines (53 loc) · 1.37 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
{
"name": "iobroker.type-detector",
"version": "4.1.1",
"description": "Detects devices in ioBroker for Material, Google home, Homekit, ...",
"author": {
"name": "bluefox",
"email": "[email protected]"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/ioBroker/ioBroker.type-detector",
"keywords": [
"ioBroker",
"types",
"devices"
],
"repository": {
"type": "git",
"url": "https://github.com/ioBroker/ioBroker.type-detector"
},
"dependencies": {},
"devDependencies": {
"@alcalzone/release-script": "^3.8.0",
"@alcalzone/release-script-plugin-license": "^3.7.0",
"@iobroker/types": "^7.0.6",
"@iobroker/eslint-config": "^1.0.0",
"chai": "^4.5.0",
"mocha": "^11.0.1",
"typescript": "~5.7.3"
},
"bugs": {
"url": "https://github.com/ioBroker/ioBroker.type-detector/issues"
},
"main": "index.js",
"files": [
"LICENSE",
"*.js",
"*.d.ts",
"*.js.map"
],
"scripts": {
"test": "node node_modules/mocha/bin/mocha --exit",
"watch": "node node_modules/mocha/bin/mocha --watch",
"build:ts": "tsc -p tsconfig.build.json && node build",
"build:doc": "node lib/createMd",
"build": "npm run build:ts && npm run build:doc",
"release": "release-script --noPush -y",
"npm": "npm i -f"
},
"license": "MIT",
"readmeFilename": "README.md"
}