forked from eclipse-thingweb/node-wot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.62 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.62 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
{
"name": "@node-wot/cli",
"version": "1.0.0",
"description": "servient command line interface",
"author": "Eclipse Thingweb <thingweb-dev@eclipse.org> (https://thingweb.io/)",
"license": "EPL-2.0 OR W3C-20150513",
"repository": "https://github.com/eclipse-thingweb/node-wot/tree/master/packages/cli",
"publishConfig": {
"access": "public"
},
"files": [
"dist/"
],
"main": "bin/index.js",
"types": "dist/cli.d.ts",
"bin": {
"wot-servient": "bin/index.js"
},
"optionalDependencies": {
"ts-node": "10.9.1"
},
"dependencies": {
"@node-wot/binding-coap": "1.0.0",
"@node-wot/binding-file": "1.0.0",
"@node-wot/binding-http": "1.0.0",
"@node-wot/binding-mqtt": "1.0.0",
"@node-wot/core": "1.0.0",
"@thingweb/thing-model": "^1.0.4",
"ajv": "^8.11.0",
"commander": "^9.1.0",
"dotenv": "^16.4.7",
"lodash": "^4.17.23",
"vm2": "3.10.0"
},
"scripts": {
"build": "tsc -b",
"start": "ts-node src/cli.ts",
"debug": "node -r ts-node/register --inspect-brk=9229 src/cli.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.ts\" \"**/*.json\"",
"test": "mocha --require ts-node/register --extension ts"
},
"bugs": {
"url": "https://github.com/eclipse-thingweb/node-wot/issues"
},
"homepage": "https://github.com/eclipse-thingweb/node-wot/tree/master/packages/cli#readme",
"keywords": [],
"devDependencies": {
"@types/lodash": "^4.14.199"
}
}