-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.03 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.03 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
66
67
68
69
70
71
72
73
{
"name": "@iobroker/testing",
"version": "5.2.2",
"description": "Shared utilities for adapter and module testing in ioBroker",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build/"
],
"scripts": {
"test": "mocha \"src/**/*.test.ts\"",
"test:watch": "mocha \"src/**/*.test.ts\" --watch",
"prebuild": "rimraf ./build",
"build": "tsc -p tsconfig.build.json",
"prewatch": "rimraf ./build",
"watch": "tsc -p tsconfig.build.json --watch",
"check": "npm run build -- --noEmit",
"lint:ts": "eslint -c eslint.config.mjs",
"lint": "npm run lint:ts",
"release": "release-script",
"update-packages": "npx -y npm-check-updates --upgrade"
},
"repository": {
"type": "git",
"url": "https://github.com/ioBroker/testing"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"iobroker",
"component-tests",
"testing"
],
"author": "AlCalzone",
"license": "MIT",
"bugs": {
"url": "https://github.com/AlCalzone/testing/issues"
},
"homepage": "https://github.com/AlCalzone/testing#readme",
"devDependencies": {
"@alcalzone/release-script": "^5.0.0",
"@alcalzone/release-script-plugin-license": "^4.0.0",
"@iobroker/adapter-core": "^3.3.2",
"@iobroker/eslint-config": "^2.2.0",
"@iobroker/types": "^7.0.7",
"@tsconfig/node16": "^16.1.8",
"@types/debug": "^4.1.12",
"@types/fs-extra": "^11.0.4",
"@types/node": "^24.10.1",
"rimraf": "^6.1.2",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"typescript": "~5.9.3"
},
"dependencies": {
"@alcalzone/esbuild-register": "^2.5.1-1",
"@types/chai": "^4.3.20",
"@types/chai-as-promised": "^7.1.8",
"@types/mocha": "^10.0.10",
"@types/sinon": "^17.0.4",
"@types/sinon-chai": "^3.2.12",
"alcalzone-shared": "~5.0.0",
"chai": "^4.5.0",
"chai-as-promised": "^7.1.2",
"debug": "^4.4.3",
"fs-extra": "^11.3.3",
"json5": "^2.2.3",
"mocha": "^11.7.5",
"sinon": "^21.0.0",
"sinon-chai": "^3.7.0"
}
}