-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
71 lines (71 loc) · 1.96 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@iobroker/testing",
"version": "5.0.3",
"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": "git+https://github.com/AlCalzone/testing.git"
},
"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": "^3.8.0",
"@alcalzone/release-script-plugin-license": "^3.7.0",
"@iobroker/adapter-core": "^3.2.3",
"@iobroker/eslint-config": "^1.0.0",
"@iobroker/types": "^7.0.6",
"@tsconfig/node16": "^16.1.3",
"@types/chai": "^4.3.20",
"@types/chai-as-promised": "^8.0.1",
"@types/debug": "4.1.12",
"@types/fs-extra": "^11.0.4",
"@types/mocha": "^10.0.10",
"@types/node": "^22.13.0",
"@types/sinon": "^17.0.3",
"@types/sinon-chai": "^3.2.12",
"rimraf": "^6.0.1",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"typescript": "~5.7.3"
},
"dependencies": {
"alcalzone-shared": "~5.0.0",
"chai": "^4.5.0",
"chai-as-promised": "^7.1.2",
"debug": "^4.4.0",
"fs-extra": "^11.3.0",
"mocha": "^11.0.1",
"sinon": "^19.0.2",
"sinon-chai": "^3.7.0"
}
}