-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 990 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 990 Bytes
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
{
"name": "webthing-2",
"version": "0.1.0",
"description": "Node.js implementation of a W3C WoT Web Thing",
"type": "module",
"scripts": {
"test": "node --test test/*.test.js",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc",
"example": "node ./examples/lamp.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/benfrancis/webthing-node-2.git"
},
"author": "Ben Francis",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/benfrancis/webthing-node-2/issues"
},
"homepage": "https://github.com/benfrancis/webthing-node-2#readme",
"dependencies": {
"express": "^5.1.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/express": "^5.0.6",
"@types/node": "^25.5.0",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.4.0",
"prettier": "^3.8.1",
"typescript": "^5.9.3"
}
}