-
Notifications
You must be signed in to change notification settings - Fork 100
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.67 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.67 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
{
"name": "@node-wot/cli",
"version": "0.8.15",
"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": "0.8.15",
"@node-wot/binding-file": "0.8.15",
"@node-wot/binding-http": "0.8.15",
"@node-wot/binding-mqtt": "0.8.15",
"@node-wot/binding-websockets": "0.8.15",
"@node-wot/core": "0.8.15",
"@node-wot/td-tools": "0.8.15",
"@types/lodash": "^4.14.199",
"ajv": "^8.11.0",
"commander": "^9.1.0",
"dotenv": "^8.6.0",
"lodash": "^4.17.21",
"vm2": "3.9.18"
},
"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 --unhandled-rejections=strict --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": []
}