-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
64 lines (64 loc) · 2.02 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
{
"name": "wot-testbench",
"version": "1.1.2",
"repository": {
"type": "git",
"url": "https://github.com/tum-esi/testbench.git"
},
"files": [
"dist/"
],
"main": "dist/Testbench.js",
"types": "dist/Testbench.d.ts",
"license": "MIT",
"dependencies": {
"@node-wot/binding-coap": "~0.8.6",
"@node-wot/binding-file": "~0.8.6",
"@node-wot/binding-http": "~0.8.6",
"@node-wot/binding-modbus": "~0.8.6",
"@node-wot/binding-mqtt": "~0.8.6",
"@node-wot/binding-netconf": "~0.8.6",
"@node-wot/binding-opcua": "~0.8.6",
"@node-wot/binding-websockets": "~0.8.6",
"@node-wot/core": "~0.8.6",
"@types/node": "^18.15.1",
"ajv": "^6.10.2",
"chai-http": "^4.3.0",
"del": "^5.1.0",
"inquirer": "^7.3.3",
"json-schema-faker": "^0.5.0-rc15",
"mkdirp": "^2.1.3",
"node-fetch": "2.6.7",
"wot-thing-description-types": "^1.1.0-13-October-2022",
"wot-typescript-definitions": "0.8.0-SNAPSHOT.25",
"xmlhttprequest": "^1.8.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"chai": "^4.2.0",
"eslint": "^8.35.0",
"esm": "^3.2.25",
"husky": "^8.0.3",
"mocha": "^10.2.0",
"prettier": "2.0.5",
"pretty-quick": "^3.1.3",
"ts-node": "^10.9.1",
"typescript": "4.9.5"
},
"overrides": {
"@types/eventsource": "1.1.10",
"node-opcua-data-value": "2.95.0",
"node-opcua-types": "2.95.0"
},
"scripts": {
"precommit": "pretty-quick --staged",
"build": "tsc",
"start": "node dist/wot-test-bench.js",
"clean": "node clean.js",
"test": "mocha --require esm --exit",
"windows_stop": "taskkill /im node.exe /f",
"lint": "eslint . --ext .ts",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\""
}
}