-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.5 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
{
"name": "test-things",
"description": "Test Things",
"scripts": {
"setup": "./scripts/installDependencies.sh",
"test": "./scripts/runTests.sh",
"format": "prettier --write . && npm run format --silent --workspaces --if-present",
"lint": "npm run lint --silent --workspaces --if-present",
"lint:fix": "npm run lint:fix --silent --workspaces --if-present"
},
"keywords": [
"wot",
"thing",
"iot"
],
"workspaces": [
"./mashups/*",
"./things/*/*/*"
],
"author": "Eclipse Thingweb <[email protected]> (https://thingweb.io/)",
"license": "EPL-2.0 OR W3C-20150513",
"devDependencies": {
"@node-wot/binding-http": "~0.8.16",
"@node-wot/core": "~0.8.16",
"@types/chai": "^4.3.17",
"@types/chai-as-promised": "^7.1.8",
"@types/mocha": "^10.0.7",
"@types/node": "^22.4.1",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"ajv": "^8.12.0",
"chai": "^4.5.0",
"chai-as-promised": "^7.1.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-notice": "^1.0.0",
"eslint-plugin-unused-imports": "^4.1.4",
"eslint-plugin-workspaces": "^0.10.1",
"mocha": "^10.7.3",
"prettier": "^2.3.2"
}
}